docker build -t <image_name> .
// ==UserScript== | |
// @name Hide Porkbun Handshake TLDs | |
// @description Hide Handshake TLDs from Pornbun's all-extensions page. | |
// @namespace http://seenet.ca/ | |
// @version 1.0 | |
// @match https://porkbun.com/products/domains | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=porkbun.com | |
// @grant none | |
// ==/UserScript== |
Moved to https://api.fmhy.net
These are the basics that every hacker should know before even trying to hack. Once you have a good grasp on everything in this section, you can move into the intermediary level.
It probably goes without saying that to become a hacker you need some basic computer skills. These skills go beyond the ability to create a Word document or cruise the Internet. You need to be able to use the command line in Windows, edit the registry, and set up your networking parameters.
Many of these basic skills can be acquired in a basic computer skills course like A+.
# main.py | |
import json | |
import logging | |
import os | |
from pathlib import Path | |
from bot import RedditBot | |
logging.basicConfig(handlers=[logging.StreamHandler()], | |
level=logging.INFO, |
Run this command in powershell as administrator
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
<?php | |
/** | |
* Plugin Name: Get Posts via REST API | |
* Description: Gets the latest two posts from a blog via the REST API. Blog link, title and date included. | |
* Plugin URI: https://renemorozowich.com | |
* Author: Rene Morozowich | |
* Version: 1.0 | |
* Text Domain: getpostsviarestapi | |
* License: GPL v2 or later | |
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt |
VERSION BUILD=8970419 RECORDER=FX | |
TAB T=1 | |
'//-------------------------------- | |
'// Todays Date in M/D/YYYY format | |
SET todaysdate EVAL("var d = new Date();var result = (d.getMonth()+1)+'/'+d.getDate()+'/'+(d.getYear()+1900); result;") | |
PROMPT {{todaysdate}} | |
'//-------------------------------- | |
'// Tomorrows Date in M/D/YYYY format | |
SET tomorowsdate EVAL("var t = new Date(); var d = new Date(); d.setDate(t.getDate()+1); var result = (d.getMonth()+1)+'/'+d.getDate()+'/'+(d.getYear()+1900); result;") | |
PROMPT {{tomorrowsdate}} |
import requests | |
import sys | |
import json | |
def waybackurls(host, with_subs): | |
if with_subs: | |
url = 'http://web.archive.org/cdx/search/cdx?url=*.%s/*&output=json&fl=original&collapse=urlkey' % host | |
else: | |
url = 'http://web.archive.org/cdx/search/cdx?url=%s/*&output=json&fl=original&collapse=urlkey' % host |
import requests | |
import re | |
import sys | |
from multiprocessing.dummy import Pool | |
def robots(host): | |
r = requests.get( | |
'https://web.archive.org/cdx/search/cdx\ | |
?url=%s/robots.txt&output=json&fl=timestamp,original&filter=statuscode:200&collapse=digest' % host) |