Wednesday, April 20, 2022

ATM hacking (hack folder)

 

import java.util.Scanner;
public class ATM {
//----------- Constant -----------
public static final int password = 1234;
public static final int maxWithdraw = 20000;
//----------- Method -----------
public static void welcome() {
}
public static boolean checkPass(int pass) {
return pass == password;
}
public static boolean checkLimit(int amount) {
return amount <= maxWithdraw;
}
public static boolean check100(int amount) {
return amount % 100 == 0;
}
public static void showBanknotes(int amount) {
System.out.println("You need " + amount + " baht");
int numberOfFiftyNotes = amount / 50;
amount = amount % 50;
int numberOfTwentyNotes = amount / 20;
amount = amount % 20;
int numberOfTenCoins = amount / 10;
//amount = amount / 10;
System.out.println();
System.out.println("You get " + numberOfFiftyNotes + " fifty notes");
System.out.println("You get " + numberOfTwentyNotes + " twenty notes");
System.out.println("You get " + numberOfTenCoins + " ten coins");
}
public static void goodbye() {
System.out.println("Good bye.");
}
public static void main(String[] args) {
System.out.println("-------ATM--------");
welcome();
Scanner keyboard = new Scanner(System.in);
System.out.print("Enter 4-digit password: ");
int keypass = keyboard.nextInt();
if (checkPass(keypass)) {
System.out.print("Enter amount of withdraw: ");
int withdraw = keyboard.nextInt();
if (checkLimit(withdraw)) {
if (check100(withdraw)) {
showBanknotes(withdraw);
} else {
System.out.println("Sorry. Amount is not divisible by 100");
}
} else {
System.out.println("Sorry. Under or over withdrawal limit");
}
} else {
System.out.println("Sorry. Wrong password");
}
goodbye();
}
}

Wednesday, April 13, 2022

IRS hacking (hack folder)

 back to warfare!

😉 So logj4, was mitigated bcs they changed the default login...shame on me!
I hv some news today! Check it out!
Fastjson 1.2.47 remote command execution leak - Karatos
BLOG.KARATOS.IN
Fastjson 1.2.47 remote command execution leak - Karatos
1. Introduction to Vulnerability Fastjosn is undoubtedly the king of vulnerabilities in the past two years. One-handed deserialization of RCE has affected countless manufacturers. At present, the stability of versions below 1.2.48 is affected, and the Autotype version below 1.2.68 will be affected.....

Gd morning worldwide! I hv intel on "real" suspisiouse treadts of radioactive waste smuggling at Ukraine. This is not about, missiles hits on the major knowned nuclear waste at nuclear power centrals, but the so called NRP's. This is a crucial moment, to work on this matter, since, it looks like the muslum changed their attacking modus of operandis, I already read the israeli IDF reffering those "news". (Ukraine Intel)

 


Rivne , Ukraine 
Figure 6.1 left 


hello again! When we are checking intel info, we cross a lot of information, this photo is not Zaporizhzhia nuclear central, amid it was target the just same , but the neutron source laboratory at Karkhiv (that comes referenced as being at Kiev) (Ukraine Intel)

 


Sunday, April 10, 2022

Natural Gas (intel)

 Let's talk about Energy Geo Strategy, the Germany transition on energy independence from Russia natural gas, replacing by the North Sea pipeline grid, and also the refernce of germans purposal of 40% of eolic energy (read my comments, also, pls)

Stored supllies security and immediatly use
Climate change impacts can be direct
Cost-recovery payback time of one to five years
Isolate the military suplly of the civilian one
Conservation measures and speed of the supply pipe lines
still crude oil needed for the generators of the machinery pipelines
cybersecurity on SCADA systems
and drones tecnology security in military and civilian security operations
Gosto
Comentar
Partilhar