Here is an example of how your forms are hacked.
Hi! again!.This is one basic example of how people mess with your forms and try to inject and post crap into you site or database.
Even handicapped George don t live with his mother and am on my own. And have better things to do.
People are in to freedom on the net but just the types of freedom they like. They are the fascists.
But when you actually are the fascist you can’t admit it or accept it or just don’t realize it.
The nazis did not think they were nazis either. They thought they were right and just regular Joes and doing the world a service.
A workable example of a basic internet hacker script
Check it out the demo and give it a whirl on this site! HA HA it wont work here it’s static. And all input data is alpha numeric only and string length limits.
You can download it for free below. Please donate a dollar for me.
Its works great and looks great too!. I hope you can find it useful. Check it out below. If you have a comment stop at the forum!
1: <?php
2:
3: echo "<html>";
4: echo "<head><title>form hacker</title></head>";
5: echo "<body>";
6: echo "<h1><center>Local machine form ripper</center></h1>";
7: echo "<br />";
8: echo '<form action="' . substr($_SERVER['PHP_SELF'],1) . '" method="POST">';
9: echo 'Target URL: <input type="text" name="url" />';
10: echo '<input type="submit" value="go" />';
11: echo '</form><br />';
12: /*--*/
13:
14: // check if data has been input yet
15: if(isset($_POST["url"])){
16: /* Options */
17: $url = $_POST["url"]; //add URL validator in the future
18: $loader ='cURL'; //add other loading options in the future.
19: /*--*/
20:
21: /* Load Target (into $server_output) */
22:
23: // cURL
24: $browser_id = "hacker browser";
25: $curl_handle = curl_init();
26: $options = array
27: (
28: CURLOPT_URL=>$url,
29: CURLOPT_HEADER=>true,
30: CURLOPT_RETURNTRANSFER=>true,
31: CURLOPT_FOLLOWLOCATION=>true,
32: CURLOPT_USERAGENT=>$browser_id
33: );
34: curl_setopt_array($curl_handle,$options);
35: $server_output = curl_exec($curl_handle);
36: curl_close($curl_handle);
37:
38:
39: /*--*/
40:
41:
42:
43: /* Clean up $server_output to $server_output2 */
44: $server_output2 = substr($server_output, stripos($server_output, "<html"));
45: /*--*/
46:
47:
48:
49: /* Save output to file */
50:
51: /*
52: $myFile = "test.txt";
53: $fh = fopen($myFile, 'w') or die("can't open file");
54: fwrite($fh, $server_output);
55: fclose($fh);
56: */
57:
58:
59: /*--*/
60:
61:
62:
63: /* Load into DOM and Parse */
64: $dom = new DomDocument;
65: $dom->preserveWhiteSpace = FALSE;
66: $dom->loadHTML($server_output2);
67: $params = $dom->getElementsByTagName('form'); // Find Sections
68: $k=0;
69: echo '<form action="' . substr($_SERVER['PHP_SELF'],1) . '" method="POST">'; //quick fix until a better way.
70: echo '<b>Select login form</b><br />'; //quick fix until a better way.
71: foreach ($params as $param){
72: $forms[$k][0] = $params->item($k)->getAttribute('name');
73: $forms[$k][1] = $params->item($k)->getAttribute('action');
74: $forms[$k][2] = $params->item($k)->getAttribute('method');
75: echo '<input type="radio" name="' . $forms[$k][0] . '" value="' . $forms[$k][0] . '" /> '
76: . 'form name: <b>' . $forms[$k][0] . '</b> '
77: . 'action: <b>' . $forms[$k][1] . '</b> '
78: . 'method: <b>' . $forms[$k][2] . '</b> '
79: . '<br />'
80: ;
81: $k++;
82: }
83: echo '';
84:
85:
86:
87:
88: /* Output */
89: /* HTML */
90: echo 'Debug info: <br />';
91: print_r($forms);
92: } //closing the isset
93:
94:
95:
96: /* HTML */
97: echo "</body></html>";
98: ?>
Please help me I am handicapped and support myself
Donate With PayPal
Donate Bitcoin
Please donate and help the handicapped.
1KtuX6N6xM2YxijE7JfPeHZmtGKGQwgfpcThanks I sent you 71 cents.
name:Melaine Date:11.18.21 @ 23:19pm IP:64.67.114.74
Thanks for sharing.