- Recon
- Find vuln
- Exploit
- Document it
Unicornscans in cli, nmap in msfconsole to help store loot in database.
@@ -20,9 +20,10 @@ blog_index_dir = 'source' # directory for your blog's index pa | |
deploy_dir = "_deploy" # deploy directory (for Github pages deployment) | |
stash_dir = "_stash" # directory to stash posts for speedy generation | |
posts_dir = "_posts" # directory for blog files | |
+org_posts_dir = "org_posts" | |
themes_dir = ".themes" # directory for blog files | |
-new_post_ext = "markdown" # default new post file extension when using the new_p | |
-new_page_ext = "markdown" # default new page file extension when using the new_p | |
+new_post_ext = "org" # default new post file extension when using the new_post t | |
+new_page_ext = "org" # default new page file extension when using the new_page t |
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 | |
"""This reads the news for google news.""" | |
import feedparser,requests,json,urllib,urllib2 | |
tech = """https://news.google.com/news/section?pz=1&cf=all&ned=us&hl=en&topic=tc&output=rss""" | |
archNewsUrl = """https://www.archlinux.org/feeds/news/""" | |
hadUrl = """http://feeds2.feedburner.com/hackaday/LgoM""" | |
mlvUrl= """http://makelehighvalley.com/blog/feed/""" | |
h76Url = """http://feeds.feedburner.com/Hive76""" | |
crackedUrl = """http://feeds.feedburner.com/CrackedRSS""" |
type errWriter struct { | |
w io.Writer | |
err error | |
} | |
func (e *errWriter) Write(p []byte) { | |
if e.err != nil { | |
return | |
} | |
_, e.err = e.w.Write(p) |
/Users/ulyssecarion/rust/sparsile/src/lib.rs:7:9: 13:10 error: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements | |
/Users/ulyssecarion/rust/sparsile/src/lib.rs:7 State { | |
/Users/ulyssecarion/rust/sparsile/src/lib.rs:8 runState: |firstState| { | |
/Users/ulyssecarion/rust/sparsile/src/lib.rs:9 let (result, nextState) = (self.runState)(firstState); | |
/Users/ulyssecarion/rust/sparsile/src/lib.rs:10 | |
/Users/ulyssecarion/rust/sparsile/src/lib.rs:11 (f(result).runState)(nextState) | |
/Users/ulyssecarion/rust/sparsile/src/lib.rs:12 } | |
... | |
/Users/ulyssecarion/rust/sparsile/src/lib.rs:6:65: 14:6 note: first, the lifetime cannot outlive the block at 6:64... | |
/Users/ulyssecarion/rust/sparsile/src/lib.rs:6 fn and_then<B>(&self, f: |A| -> State<S, B>) -> State<S, B> { |
echo -----BEGIN CERTIFICATE----- > encoded.txt | |
echo Just Base64 encode your binary data | |
echo TVoAAA== >> encoded.txt | |
echo -----END CERTIFICATE----- >> encoded.txt | |
certutil -decode encoded.txt decoded.bin |
""" | |
Simple UserLand Keylogger for Windows | |
Based on pyHook. | |
@_hugsy_ | |
""" | |
import sys | |
from ctypes import * | |
try: |
/* Keystone Assembler Engine (www.keystone-engine.org) */ | |
/* By Nguyen Anh Quynh <[email protected]>, 2016 */ | |
#ifndef KEYSTONE_ENGINE_H | |
#define KEYSTONE_ENGINE_H | |
#ifdef __cplusplus | |
extern "C" { | |
#endif |
module API.Logging ( | |
-- * Initialize | |
mkLog, | |
-- * Context, Types | |
Context(..), | |
Method(..), | |
Log, | |
-- * Logging |
from twisted.internet import reactor, defer, endpoints, task, stdio | |
from twisted.conch.client import default, options, direct | |
from twisted.conch.error import ConchError | |
from twisted.conch.ssh import session, forwarding, channel | |
from twisted.conch.ssh import connection, common | |
from twisted.python import log, usage | |
import signal | |
import tty | |
import struct | |
import fcntl |