A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

Possible?

815 views · started by Domo™ ·
#1
Possible?

Ontopic:
Is it possible to collect the data that people have entered on a javascript pop up box.

~I Will Not Post The Source Because I Need Permission~
Source Code From "http://www.w3schools.com/" I give credits to the person who made.
#2
<script type="text/javascript">
var name = prompt("What is your name?", "Bob");
alert("Your name is " + name);
</script>

Credit not needed.

If you mean a window.open() box, then I'm not too sure. If it's anything like frames, you can only do it if the window you opened is on the same domain/subdomain. Thus if you popup a box to PayPal, you can't get their username/password. Because browser makers aren't stupid.
#3
Don't FLWs work that way?
If it were possible then FLW phished accounts would be accessible to anyone.
#4
Shadow wrote:
Don't FLWs work that way?
If it were possible then FLW phished accounts would be accessible to anyone.

Flw's are made with php files java scrip pop ups open when you click a button to but made with html i am trying to figure out can you record a username and password with the java pop up box.
#7
FLWs are not made with JavaScript. They're made with PHP. If you want to request an FLW, do it in the proper section. That section is not here.

You can record shit in JavaScript the way I showed you above. If you want to use JavaScript for scamming, you're shit out of luck, because most sites (including Gaia) don't allow their users to execute JavaScript on their server.