Just some stuff
This commit is contained in:
17
kernel3.7.7.src
Normal file
17
kernel3.7.7.src
Normal file
@@ -0,0 +1,17 @@
|
||||
if params.len != 1 or params[0] == "-h" or params[0] == "--help" then exit("<b>Usage: "+program_path.split("/")[-1]+" [ip_address]</b>")
|
||||
metaxploit = include_lib("/lib/metaxploit.so")
|
||||
|
||||
if not metaxploit then
|
||||
metaxploit = include_lib(current_path + "/metaxploit.so")
|
||||
end if
|
||||
|
||||
if not metaxploit then exit("Error: Can't find metaxploit library in the /lib path or the current folder")
|
||||
address = params[0]
|
||||
net_session = metaxploit.net_use( address )
|
||||
|
||||
if not net_session then exit("Error: can't connect to net session")
|
||||
metaLib = net_session.dump_lib
|
||||
result = metaLib.overflow("0x9F13BA6", "letefferrorif")
|
||||
|
||||
|
||||
if not result then exit("Program ended")
|
||||
Reference in New Issue
Block a user