Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am psifertex on github.
  • I am psifertex (https://keybase.io/psifertex) on keybase.
  • I have a public key whose fingerprint is C664 5611 3D7D AF0B 3625 941C F6B4 BE72 ECDE 40D1

To claim this, I am signing this object:

@psifertex
psifertex / vancouver bsides ctf writeups
Created March 18, 2015 16:11
psifertex yvrctf solutions/writeups
http://captf.com/2015/bsides-vancouver/crypto/matasano/psifertex-solve.txt
http://captf.com/2015/bsides-vancouver/forensics/kickerofelves/kickerofelves-psifertex-solve.txt
http://captf.com/2015/bsides-vancouver/ownable/delphi-psifertex-solve.sh
http://captf.com/2015/bsides-vancouver/ownable/sushi-psifertex-solve.py
http://captf.com/2015/bsides-vancouver/ownable/www-psifertex-solve.py
diff --git a/binja.py b/binja.py
index b8faf81..78bf1ce 100755
--- a/binja.py
+++ b/binja.py
@@ -264,6 +264,8 @@ class MainWindow(QMainWindow):
self.setCentralWidget(self.splitter)
+ self.setAcceptDrops(True)
+
#!/bin/bash
tempfoo=`basename $0`
TMPFILE=`mktemp -d -q /tmp/${tempfoo}.XXXXXX`
cp $1 $TMPFILE
cd $TMPFILE
filename=`tnef -t -f $1|awk '{print $1}'`
tnef -C . -f $1
ls -l $filename
security cms -D -i $filename|tail +4|base64 -D > test.dat
;; -*- mode: dotspacemacs -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
;;(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
(defun dotspacemacs/layers ()
"Configuration Layers declaration."
(setq-default
;; List of additional paths where to look for configuration layers.
;; Paths must have a trailing slash (ie. `~/.mycontribs/')
GET /test-headers HTTP/1.1
Host: psifertex.com
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us
Connection: keep-alive
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3
;;; extensions.el --- minimap Layer extensions File for Spacemacs
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; packages.el --- minimap Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;

Binary Ninja Python API Documentation

binaryninja

@psifertex
psifertex / theme.cpp
Created September 15, 2016 19:10
binary ninja dark theme colors
QColor background = QColor(42, 42, 42);
QColor backgroundDark = QColor(16, 16, 16);
QColor backgroundWindow = QColor(54, 54, 54);
QColor backgroundHighlight = QColor(74, 74, 74);
QColor content = QColor(224, 224, 224);
QColor disabled = QColor(144, 144, 144);
QColor selection = QColor(96, 96, 96);
QColor selectionLight = QColor(128, 128, 128);
QColor green = QColor(162, 217, 175);
QColor red = QColor(222, 143, 151);