diff options
author | Sebastian Korotkiewicz <skorotkiewicz@gmail.com> | 2022-03-19 09:17:55 +0100 |
---|---|---|
committer | Sebastian Korotkiewicz <skorotkiewicz@gmail.com> | 2022-03-19 09:17:55 +0100 |
commit | 53da95395aad137bd0ab2b2f4ed1e9e3cb00c962 (patch) | |
tree | b101ce45b258711180a1cc16fcc27bdf5d252241 /README.md | |
download | site_roulette-53da95395aad137bd0ab2b2f4ed1e9e3cb00c962.tar.gz |
Initial commit
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..2e5fe92 --- /dev/null +++ b/README.md @@ -0,0 +1,40 @@ +# Sites Roulette + +My simple application to view user pages on a given server, + +curl.php gets the data from the main page of the server, parses it and writes to the database, thanks to cron you can easily update the database for example once a day. + +it's a very simple script, if you want to run it, you need to personalize some things, like the name of your home directory or regex to download users + +to change: + +- public_html/browser/get.php + + - require_once('/home/grizzly/store/browser/db.php'); + - die(header("Location: https://tilde.team/~grizzly/browser/?member=" . $row['login_name'])); + +- public_html/browser/index.php + + - s/tilde.team/you.website/ + +- store/browser/curl.php + + - require_once ('/home/grizzly/store/browser/db.php'); + - curl_setopt($c, CURLOPT_URL,'https://tilde.team/'); + - preg*match_all('/<li><a href="\/~(.*)\/" class=\"list-group-item col-xs-6 col-sm-4 col-md-2\">~(.\_)<\/a><\/li>/', $data, $matches); + +- store/browser/update.sh + +and add cron.txt content to your cron: `crontab -e` + +--- + +the script was created out of "need", I wanted to browse all user pages and I didn't want to open thousands of tabs, so this is "sites roulette". + +you can modify it, share it freely + +--- + +if you want to change or improve something, clone the repo, add changes, upload to some git server and send me the link, if you are a user of tilde.institute, send me an email with the path to your repo on the server + +=> grizzly/at/nand.sh |