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
# Accent color for UI elements | |
accent: "#1C8CA8" | |
# Terminal background color | |
background: "#FAF4F2" | |
# Whether the theme is lighter or darker. | |
details: lighter | |
# The foreground color. | |
foreground: "#29242A" | |
# Ansi escape colors. | |
terminal_colors: |
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
# Accent color for UI elements | |
accent: "#c1c0c0" | |
# Terminal background color | |
background: "#2d2a2e" | |
# Whether the theme is lighter or darker. | |
details: darker | |
# The foreground color. | |
foreground: "#fcfcfa" | |
# Ansi escape colors. | |
terminal_colors: |
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
2046f9-adb3e5 1/48 | |
2046f9-ab081e 1/1 | |
2046f9-6bb8dd 1/15 | |
2046f9-ec6aff 2/20 | |
2046f9-3c8c30 2/19 | |
2046f9-0e4a87 1/2 | |
2046f9-db6b6d 1/48 | |
2046f9-5eeafe 2/18 | |
2046f9-fbbfff 1/3 | |
2046f9-8bdda0 1/14 |
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>Filter Bypass</title> | |
</head> | |
<body> | |
<form> | |
Enter URL to load: <input type="text" id="url" /> | |
<input type="button" value="Load URL" onclick="loadUrl()" /> |
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
import csv | |
import datetime | |
today = datetime.date.today() | |
v = open('fg.csv') | |
r = csv.reader(v) | |
output = [] | |
# row0.append('berry') | |
next(r, None) |
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 | |
# | |
# If Nifty drive is mounted, unmounts it and puts the computer to sleep. | |
# If Nifty drive is unmounted, mounts it. | |
# | |
DEV="/dev/""$(diskutil info Nifty | grep 'Part of Whole' | cut -d : -f 2 | sed 's/^ *//g')" | |
if [ $(mount | grep -c $DEV) == 1 ] | |
then |
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
# For making a report of .mbox content | |
import mailbox | |
mbox = mailbox.mbox('chat.mbox') | |
i=1 | |
for message in mbox: | |
print "<h2> Message # ",i,"</h2>" | |
print "from :",message['from'],"</br>" | |
print "subject:",message['subject'],"</br>" |
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
Import-Module activedirectory | |
Import-Csv "user_pw.csv" | Foreach { | |
$user = $_.sAMAccountName | |
$pw = $_.Password | |
try { | |
Set-ADAccountPassword -Identity $user -NewPassword (ConvertTo-SecureString $pw -AsPlainText -force) -Reset | |
Write-Output "$user,Success" | |
} catch { | |
Write-Output "$user,Error" | |
} |
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
import urllib2 | |
import csv | |
pws = [] | |
# Set the number of passwords you want in the range. | |
for i in range(350): | |
# for strong passwords | |
r = urllib2.urlopen('http://www.dinopass.com/password/strong') | |
# for simple passwords |
NewerOlder