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
| #!/bin/bash | |
| # enp's epic .bashrc file | |
| #it's open source duh | |
| # {{{ History | |
| # don't put duplicate lines in the history. See bash(1) for more options | |
| # don't overwrite GNU Midnight Commander's setting of `ignorespace'. | |
| export HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups | |
| # ... or force ignoredups and ignorespace |
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
| add_newline = true | |
| prompt_order = ["username", "kubernetes", "directory", "git_branch", "git_status", "character"] | |
| [character] | |
| symbol = "\n(β©ο½-Β΄)β ο" | |
| error_symbol = "\n(ΰΈ β’Μ_β’Μ)ΰΈ ο" | |
| style_success = "bold green" | |
| use_symbol_for_status = true | |
| [username] |
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 |
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
| ... | |
| ;::::; | |
| ;::::; :; | |
| ;:::::' :; | |
| ;:::::; ;. | |
| ,:::::' ; OOO\ | |
| ::::::; ; OOOOO\ | |
| ;:::::; ; OOOOOOOO | |
| ,;::::::; ;' / OOOOOOO | |
| ;:::::::::`. ,,,;. / / DOOOOOO |
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
| (==( )==) | |
| `-.`. ,',-' | |
| _,-'" | |
| ,-',' `.`-. | |
| (==( )==) | |
| `-.`. ,',-' | |
| _,-'" | |
| ,-',' `.`-. | |
| (==( )==) | |
| `-.`. ,',-' |
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
| <?php if (!defined('PmWiki')) exit(); | |
| $WikiTitle = "My New Wiki"; | |
| $PageLogoUrl = "http://example.com/mylogo.gif"; | |
| # Uncomment and correct these if PmWiki fails to detect the browser-reachable URLs | |
| #$ScriptUrl = 'http://example.com/pmwiki/pmwiki.php'; | |
| #$PubDirUrl = 'http://example.com/pmwiki/pub'; | |
| $DefaultPasswords['admin'] = pmcrypt('onesecret'); |
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
| #!/usr/bin/env python3 | |
| print(""" | |
| ββββββββββββββββββββββ | |
| ββββββββββββββββββββββββββ | |
| βββββββββββββββββββββββββββ | |
| βββββββββββββββββββββββββββ | |
| ββββββββββββββββββββββββββββ | |
| βββββββββββββββββββββββββββββ | |
| ββββββββββββββββββββββββββββββ | |
| βββββββββββββββββββββββββββββ |
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
| sudo apt-get update | |
| sudo apt-get install software-properties-common | |
| sudo add-apt-repository universe | |
| sudo add-apt-repository ppa:certbot/certbot | |
| sudo apt-get update | |
| sudo apt-get install certbot python3-certbot-apache | |
| sudo certbot --apache |
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
| #Creating an .onion service in the Tor network is as simple as editing /etc/tor/torrc and adding: | |
| HiddenServiceDir /var/lib/tor/www_service/ | |
| HiddenServicePort 80 127.0.0.1:80 | |
| # After restarting the tor service with | |
| sudo service tor restart | |
| # or | |
| sudo service tor reload | |
| # The directory will be created automagically, and inside the new directory, two files are generated, hostname and private_key. |
NewerOlder