View previous topic :: View next topic |
Author |
Message |
smauish How do I cheat?
Reputation: 0
Joined: 30 Jan 2015 Posts: 2
|
Posted: Fri Jan 30, 2015 2:14 pm Post subject: Calling a <div class> in javascript+html based game. |
|
|
So I'm playing this game, and if you can collect x number of points a popup (html popup, not an actual popup) shows for you to enter info for a leader board (name and email).
of course I can scan and inject the score with CE, however, I would like to try 'activate' that popup without having any points.
Is it possible?
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Fri Jan 30, 2015 2:29 pm Post subject: |
|
|
Force the style of the div to not be hidden. You can do that with either directly entering the Javascript into your browser url, or use a plugin for your browser such as TamperMonkey/GreaseMonkey.
_________________
- Retired. |
|
Back to top |
|
 |
smauish How do I cheat?
Reputation: 0
Joined: 30 Jan 2015 Posts: 2
|
Posted: Fri Jan 30, 2015 4:19 pm Post subject: |
|
|
hmmm, going tru source code, I found only name forms hidden, but could not force the whole div
this is the source, if anyone has any direct idea, I'll really appreciate it.
Code: | <div class="popup endCoinsCollected withForm">
<div class="content">
<img class="title" src="images/popup/titles/win.jpg" style="height: 100px;" align="center" />
<div class="text">
<br />
Izziv si opravil/-a z odliko. Če se želiš potegovati za mega smučarski nagradni sklad, vpiši svoje podatke.
<br />
<br />
Z igro lahko tudi nadaljuješ in si izboljšaš uvrstitev na lestvici.
<br />
<br />
<h2 style="font-weight: normal;">Zbral si <b><span></span> točk</b></h2>
<form action="siteurl/" method="post" accept-charset="utf-8" autocomplete="off">
<input type="hidden" id="eventDate" value="1423263600" />
<div class="line">
Vpiši se na lestvico:
</div>
<div class="line">
<div class="left">
<input type="text" name="userName" id="successUserName" class="validateText" value="" placeholder="Vnesi ime" />
</div>
<div class="right">
<i class="fa fa-times error"></i>
<i class="fa fa-check ok"></i>
</div>
</div>
<div class="line">
<div class="left">
<input type="text" name="userEmail" id="successUserEmail" class="validateEmail" value="" placeholder="Vnesi email naslov" />
</div>
<div class="right">
<i class="fa fa-times error"></i>
<i class="fa fa-check ok"></i>
</div>
</div>
<div class="line checkbox">
<div class="left full">
<input type="checkbox" name="userSkiCard" id="userSkiCard" value="1" />
<label for="userSkiCard">
želim sodelovati v žrebu za smučarsko karto (Turracher Höhe, dne 07. 2.)
</label>
</div>
</div>
<div class="line checkbox">
<div class="left full">
<input type="checkbox" name="userAgreeTerms" id="successUserAgreeTerms" value="1" />
<label for="successUserAgreeTerms">
strinjam s <a href="siteurli/ski/terms" target="_blank">pravili nagradne igre</a>
</label>
</div>
</div>
<div class="line success">
<b>Hvala, sodeluješ v žrebu!</b>
<br />
<i class="fa fa-check saveOk"></i>
<br />
Preveri še ostale datume na
<a href="siteurl" target="_blank">naši spletni strani</a>.
</div>
</form>
</div>
<br />
<br />
<div class="buttonLine">
<div class="button submit">
<div>
Oddaj
</div>
</div>
<div>ali</div>
<div class="button resetGame">
<div>
Igraj ponovno
</div>
</div>
</div>
<div class="clearfix"></div>
<br />
<br />
</div>
</div> |
|
|
Back to top |
|
 |
|