-
−2
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
StringBuilder data = new StringBuilder();
/*int len = 0;
len = sock.getInputStream().read(recv);
data.setLength(0);
data.append(new String(recv, 0, len));
System.out.println("len="+len);*/ // ГАВНОООООО!!!!!
int i;
BufferedInputStream bf = new BufferedInputStream(sock.getInputStream());
while( (i=bf.read()) != -1 ) //заебок!
{
System.out.print((char)i);
}
ну а хули блеать
RUSSIAN-PROGRAMMER,
11 Ноября 2017
-
−4
- 1
Итого байт: 205812872340
Результат прошлого кода! А давайте письками померяемся?
samopisiets,
09 Ноября 2017
-
−2
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
import java.io.*;
import java.security.*;
import java.nio.file.*;
class mdsumall
{
static long bytes = 0;
public static void main(String[] args)
{
System.out.println("Программа начинает работу...");
findAndStore cEtc = new findAndStore("/etc");
Thread etc = new Thread(cEtc);
findAndStore cUsr = new findAndStore("/usr");
Thread usr = new Thread(cUsr);
findAndStore cHome = new findAndStore("/home");
Thread home = new Thread(cHome);
etc.start();
usr.start();
home.start();
try {
etc.join();
usr.join();
home.join();
}
catch(InterruptedException e) {
System.out.println("Прерывание основного потока");
}
System.out.println("Итого байт: "+bytes);
}
}
class findAndStore implements Runnable
{
String name;
findAndStore(String name)
{
this.name = name;
}
public void run()
{
System.out.println("Начат сбор в папке "+name);
storeRecursive(name);
}
void storeRecursive(String folder)
{
File f = new File(folder);
File[] list = f.listFiles();
for(File item : list) {
if(item.isDirectory())
storeRecursive(item.getPath());
try {
mdsumall.bytes += Files.size(item.toPath());
}
catch(IOException e) {
System.out.println(e);
}
}
}
}
Зацените пасаны!!! Это реально нагружает процессор до 80 градусов греет
samopisiets,
09 Ноября 2017
-
−2
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
class MoreThreads
{
public static void main(String[] args)
{
println("Запуск основного потока");
MyThread mt1 = new MyThread("Child #1");
MyThread mt2 = new MyThread("Child #2");
MyThread mt3 = new MyThread("Child #3");
MyThread mt4 = new MyThread("Child #4");
MyThread mt5 = new MyThread("Child #5");
MyThread mt6 = new MyThread("Child #6");
MyThread mt7 = new MyThread("Child #7");
MyThread mt8 = new MyThread("Child #8");
MyThread mt9 = new MyThread("Child #9");
MyThread mt10 = new MyThread("Child #10");
MyThread mt11 = new MyThread("Child #11");
MyThread mt12 = new MyThread("Child #12");
MyThread mt13 = new MyThread("Child #13");
MyThread mt14 = new MyThread("Child #14");
MyThread mt15 = new MyThread("Child #15");
MyThread mt16 = new MyThread("Child #16");
MyThread mt17 = new MyThread("Child #17");
MyThread mt18 = new MyThread("Child #18");
for(int i=0; i<50; i++) {
print(".");
try {
Thread.sleep(100);
}
catch(InterruptedException e) {
println("Прерывание основного потока");
}
}
println("Завершение основного потока");
}
static void print(String text)
{
System.out.print(text);
}
static void println(String text)
{
System.out.println(text);
}
}
class MyThread extends Thread
{
MyThread(String name) {
super(name);
setName(name);
start();
}
public void run() {
System.out.println(getName()+" - запуск");
try {
for(int count=0; count<10; count++) {
Thread.sleep(400);
System.out.println("В "+getName()+", счётчик: "+count);
}
}
catch(InterruptedException e) {
System.out.println(getName()+" прерван");
}
System.out.println(getName()+" - завершение");
}
}
samopisiets,
09 Ноября 2017
-
−1
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
public static byte[] hexStringToByteArray(String s) {
int len = s.length();
byte[] data = new byte[len / 2];
for (int i = 0; i < len; i += 2) {
data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4)
+ Character.digit(s.charAt(i+1), 16));
}
return data;
}
Какой-то пидор написал эту функцию, к InetAddress.getByAddress не подходит нихуя!!
pawn-master,
04 Ноября 2017
-
+1
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
private SharedPreferences longCache;
private String email;
public void updateEmail(String newLogin) {
if(newLogin != null) {
email = newLogin;
if(longCache.contains("email")) {
longCache.edit().remove("email").apply();
}
longCache.edit().putString("email", email).apply();
}
}
Проект под Android.
Стаж разработчика - 5 лет.
ausichenko,
25 Октября 2017
-
+1
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
List<Address> addresses = loadFromDatabase();
Map<Integer, Address> sortMap = new HashMap<>();
for (Address address : addresses) {
if (address.getLatitude() != null && address.getLongitude() != null) {
sortMap.put(new Coords(address.getLatitude(), address.getLongitude()).hashCode(), address);
}
}
addresses = new ArrayList<>(sortMap.values());
...
class Coords {
...
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + latitude.hashCode();
result = prime * result + longitude.hashCode();
return result;
}
}
Автор так решил рандомизировать список что-ли? Не понимаю.
moonson,
18 Октября 2017
-
−1
- 1
- 2
- 3
- 4
- 5
if(keys.b && !keys.n) //ГЛЮЧИТ АЛГОРИТМ
{
if(old_ch != '\n' && ch == '\n') System.out.format("%6d ", ++line);
System.out.format("\nLINE: %d\told_ch=='%c' \t ch='%c'\n", line, old_ch, ch); //дебаг
}
Нихуя так read использовать
KoderOT-Boga,
17 Октября 2017
-
+4
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
<form>
<input name=userid type=text>
<input name=password type=text>
<input name=email text=text>
<input type=submit>
</form>
public class User {
private String userid;
private String password;
private String email;
private boolean isAdmin;
//Getters & Setters
}
@RequestMapping(value = "/addUser", method = RequestMethod.POST)
public String submit(User user) {
userService.add(user);
return "successPage";
}
Here is the typical request:
POST /addUser
userid=bobbytables&password=hashedpass&[email protected]
And here is the exploit:
POST /addUser
userid=bobbytables&password=hashedpass&[email protected]&isAdmin=true
https://www.owasp.org/index.php/Mass_Assignment_Cheat_Sheet
Я вообще охуел, когда узнал что такие уязвимости существуют. А вы говорите PHP говно.
inho,
14 Октября 2017
-
+4
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
public TkApp(final Base base) throws IOException {
super(
new TkWithHeaders(
new TkVersioned(
new TkMeasured(
new TkFlash(
new TkAppFallback(
new TkAppAuth(
new TkForward(
new TkFork(
new FkHost(
"relay.jare.io",
new TkFallback(
new TkRelay(base),
req -> new Opt.Single<>(
new RsWithType(
new RsWithBody(
new RsWithStatus(req.code()),
new Sprintf(
"Please, submit this stacktrace to GitHub and we'll try to help: https://github.com/yegor256/jare/issues\n\n%s",
ExceptionUtils.getStackTrace(
req.throwable()
)
)
),
"text/plain"
)
)
)
),
...
Взято отсюда: https://github.com/yegor256/jare/blob/master/src/main/java/io/jare/tk/TkApp.java#L70
mazoxox,
06 Октября 2017