This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| +------------------------------------------------------+ | |
| Linux command cheat sheet | |
| +------------------------------------------------------+ | |
| COMMAND DESCRIPTION | |
| echo "text" ------ echos text (eg echo "hello world" ) | |
| uname -a ------- Show system and kernel | |
| head -n1 /etc/issue ---- Show distribution |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Please do your research on the tor( the darknet, dark web, etc) scams are everywhere so dont get played. | |
| - If it seems too good to be true, it is | |
| - always test software nd files on an airgapped (a computers that is disconnected from all wireless and wired communication) | |
| machine | |
| - Do not use a VPN with TOR, despite what the youtube gu'rus say (they are usualy sponsored by the VPN provider lol ) | |
| it is safe and reccomended that you do not use a vpn to connect to the TOR network, as it introduces a man in the middle | |
| who can snoop on your data (VPN providers sometimes do this at the request of Law enforcment or for profit) It also adds | |
| more complexity to the system and creates a larger attack surface. | |
| - Tor and the onoin services are not all about drugs or illicit services. Allot of people around |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form method=GET action="<?php htmlentities(basename(_FILE_)); ?>"> | |
| <input type=text name="q" value="<?php echo htmlentities($_REQUEST["q"]); ?>"> | |
| <input type=submit value="WHOIS"> | |
| </form> | |
| <pre><?php | |
| /* | |
| * whois.php | |
| */ | |
| main(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var express = require('express'); | |
| var cgi = require('./cgi'); | |
| app = express(); | |
| var script = __dirname + '/hello.cgi'; | |
| app.get('/', cgi(script, function (req, options) { | |
| options.env.USERNAME = 'Mr. User'; | |
| })); | |
| app.use(function (err, req, res, next) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>title</title> | |
| <script type="text/javascript"> | |
| var _gaq = _gaq || []; | |
| _gaq.push(['_setAccount', 'UA-XXXXXXXX-Y']); | |
| _gaq.push(['_trackPageview']); | |
| (function() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo -e "\e[1;40m" ; clear ; while :; do echo $LINES $COLUMNS $(( $RANDOM % $COLUMNS)) $(( $RANDOM % 72 )) ;sleep 0.05; done|awk '{ letters="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%^&*()"; c=$4; letter=substr(letters,c,1);a[$3]=0;for (x in a) {o=a[x];a[x]=a[x]+1; printf "\033[%s;%sH\033[2;32m%s",o,x,letter; printf "\033[%s;%sH\033[1;37m%s\033[0;0H",a[x],x,letter;if (a[x] >= $1) { a[x]=0; } }}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| layout: default | |
| --- | |
| <div class="blog-index"> | |
| {% assign post = site.posts.first %} | |
| {% assign content = post.content %} | |
| {% include post_detail.html %} | |
| </div> |