View previous topic :: View next topic |
Author |
Message |
runescape fan122 Master Cheater
Reputation: 0
Joined: 16 Sep 2007 Posts: 366 Location: Playin RuneScape or... Playin RuneScape lol.
|
Posted: Sun Aug 03, 2008 11:23 am Post subject: is it possible 2 hack text games?already tried wpe n' ce.... |
|
|
do u think it's possible 2 hack a text game without hackin into the server like samuraioflegend.com? the admin on that game told me someone hacked the game n' banned like... alot of ppl i tried everything i could with wpe n' ce... no luck so far
_________________
^^^
Thanks makeusore for the sig!
 |
|
Back to top |
|
 |
TeNsIOn Advanced Cheater
Reputation: 0
Joined: 10 Jun 2008 Posts: 66
|
Posted: Sat Aug 09, 2008 12:25 pm Post subject: |
|
|
wtf is a text game? u mean like DoD style game?
_________________
Respect List
- DarkByte
- x0r
- Wiccaan
_________________
My Projects
_________________
- Combat Arms D3D Hook (Just need a bypass)
- Maple Story Trainer
- WarRock D3D Hook (needs bypass) |
|
Back to top |
|
 |
lolOkayBailolOkayBailolOk Master Cheater
Reputation: 1
Joined: 23 Jun 2007 Posts: 307
|
Posted: Sun Aug 10, 2008 10:57 am Post subject: |
|
|
I think he means HTML games on the internet like Pokemon Online.
Uhh for now since it's a text game I'm going to guess there is no memory OR the memory on the browser is useless to what your trying to intact.
|
|
Back to top |
|
 |
Jani Grandmaster Cheater
Reputation: 2
Joined: 29 Dec 2006 Posts: 804
|
Posted: Sun Aug 10, 2008 11:27 am Post subject: |
|
|
If you're talking about MUDs, then no, they're totally server-sided.
|
|
Back to top |
|
 |
runescape fan122 Master Cheater
Reputation: 0
Joined: 16 Sep 2007 Posts: 366 Location: Playin RuneScape or... Playin RuneScape lol.
|
Posted: Sun Aug 10, 2008 2:58 pm Post subject: |
|
|
uhh ok, lock this plz
_________________
^^^
Thanks makeusore for the sig!
 |
|
Back to top |
|
 |
raredaredevil I posted the 100000th post
Reputation: 3
Joined: 02 Jun 2006 Posts: 1702 Location: England
|
Posted: Tue Sep 16, 2008 9:47 pm Post subject: |
|
|
Sorry to bump this but I have coded a python script that might intrest you, u need to edit it depending on your level but its easy. You will also need to install python:
This bypasses ocr codes , does crimes , mines for you , votes for you , trains for you its just something i threw together in about a hour but it works fine .
open python (idle) editor and run / save this file
Code: |
import urllib
import urllib2
import cookielib
import time
cookieJar = cookielib.LWPCookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookieJar))
opener.addheaders = [('User-agent', "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.4) Gecko/20061201 Firefox/2.0.0.4 (Ubuntu-feisty)")]
username = "urusername"
password = "urpass"
form = { "username" : username,
"password" : password}
encodedForm = urllib.urlencode(form)
url = "http://www.samuraioflegend.com/authenticate.php"
request = urllib2.Request(url, encodedForm)
page = opener.open(request)
contents = page.read()
if "<b>Name:</b>" in contents:
print "Logged in as:", username
print "First executing votes page 1/10"
response = opener.open('http://www.samuraioflegend.com/votext.php')
print "First executing votes page 2/10"
response = opener.open('http://www.samuraioflegend.com/voteg2.php')
print "First executing votes page 3/10"
response = opener.open('http://www.samuraioflegend.com/votemg.php')
print "First executing votes page 4/10"
response = opener.open('http://www.samuraioflegend.com/votetrpg.php')
print "First executing votes page 5/10"
response = opener.open('http://www.samuraioflegend.com/votem2.php')
print "First executing votes page 6/10"
response = opener.open('http://www.samuraioflegend.com/votetwg.php')
print "First executing votes page 7/10"
response = opener.open('http://www.samuraioflegend.com/voteon.php')
print "First executing votes page 8/10"
response = opener.open('http://www.samuraioflegend.com/votetg.php')
print "First executing votes page 9/10"
response = opener.open('http://www.samuraioflegend.com/votetm.php')
print "First executing votes page 10/10"
response = opener.open('http://www.samuraioflegend.com/votetog.php')
print "-----Finished Votes-----"
looper= "rdd"
while looper=="rdd":
time.sleep(5)
response = opener.open('http://www.samuraioflegend.com/criminal.php')
contents = response.read()
if "Necessary Evil," in contents:
print "Ocr Page Found"
print contents
contstart = contents.find("src='verify/") +12
contend = contents.find(".gif" ,contstart)
ocr = contents[contstart:contend]
print "Correct Ocr:" + ocr
ocrform = { "action" : "validate",
"refer" : "criminal.php",
"number" : ocr
}
encodedForm = urllib.urlencode(ocrform)
url = "http://www.samuraioflegend.com/macro2.php"
request = urllib2.Request(url, encodedForm)
page = opener.open(request)
contents = page.read()
#####Ocr pwnd###########
contstart = contents.find("<b>Brave:</b>") +14
contend = contents.find("/" ,contstart)
mybrave = contents[contstart:contend]
if mybrave <> "0":
print "Your Brave is " + mybrave + " so executing a crime"
response = opener.open('http://www.samuraioflegend.com/docrime.php?c=9')
#####Brave and crime performed######
contstart = contents.find("<b>Energy:</b> ") +15
contend = contents.find("%" ,contstart)
myenergy = contents[contstart:contend]
if int(myenergy) > 20:
response = opener.open('http://www.samuraioflegend.com/gym.php')
contents = response.read()
contstart = contents.find("train up to ") +12
contend = contents.find(" times." ,contstart)
traintimes = contents[contstart:contend]
print "Your Energy is " + myenergy + " so training str : " + traintimes + " times"
response = opener.open('http://www.samuraioflegend.com/gym.php?stat=Strength&amnt=' + traintimes )
contents = response.read()
###gym trained#####
response = opener.open('http://www.samuraioflegend.com/mine.php')
contents = response.read()
contstart = contents.find("Power:</b> ") +11
contend = contents.find(" / " ,contstart)
mypower = contents[contstart:contend]
if int(mypower) > 9:
print "Your power is " + mypower + " so mining for gold"
response = opener.open('http://www.samuraioflegend.com/mine.php?action=mine')
contents = response.read()
###mined####
|
You will see something like this has it runs:
Code: | Logged in as: XXXXX
First executing votes page 1/10
First executing votes page 2/10
First executing votes page 3/10
First executing votes page 4/10
First executing votes page 5/10
First executing votes page 6/10
First executing votes page 7/10
First executing votes page 8/10
First executing votes page 9/10
First executing votes page 10/10
-----Finished Votes-----
Your Brave is 2 so executing a crime
Your power is 16 so mining for gold
Your Brave is 1 so executing a crime
Your Brave is 2 so executing a crime
Your power is 15 so mining for gold
Your Brave is 1 so executing a crime
Your Brave is 2 so executing a crime
Your power is 14 so mining for gold
Your Brave is 1 so executing a crime
Your Energy is 29 so training str : 7 times |
_________________
ʎɐqǝ uo pɹɐoqʎǝʞ ɐ ʎnq ı ǝɯıʇ ʇsɐן ǝɥʇ sı sıɥʇ |
|
Back to top |
|
 |
|