Posted
Ok basically so this is dumb but i'm a node js coder not sharp, so how do i made a true statement from the
isAPIAttached()?
If you can help me please reply
Replied
if(isAPIAttached()) {
label.Text = "aTTAcHEd"
}
or
if(isAPIAttached() == true) {
label.Text = "aTTAcHEd"
}
Cancel
Post
Added
forgot to add semicolons
Cancel
Post
Replied
if(isApiAttached() == true) {
Console.WriteLine("The API is attached");
}
else {
if(isApiAttached() == false) {
Console.WriteLine("The API is not attached");
}
}
if(File.Exists("./exploit-main.dll") = false) {
Console.WriteLine("Turn off your antivirus!!11! xd!");
}
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post