| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| <?php | |
| $i = 1; | |
| foreach( $ad_campaigns as $key => $campaign ): | |
| ?> |
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
| #!/usr/bin/python2.7 | |
| import socket | |
| # import socks | |
| import urllib2 | |
| import sys | |
| import subprocess | |
| import string | |
| import random | |
| import os |
- How to Build a Successful Information Security Career (Daniel Miessler)
- The First Steps to a Career in Information Security (Errata Security - Marisa Fagan)
- Hiring your first Security Professional (Peerlyst - Dawid Balut)
- How to Start a Career in Cyber security
- How to Get Into Information Security (ISC^2)
- https://www.isc2.org/how-to-get-into-information-security.aspx
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
| setImmediate(function(){ | |
| Java.perform(function() { | |
| var currentApplication = Java.use("android.app.ActivityThread").currentApplication(); | |
| var context = currentApplication.getApplicationContext(); | |
| // Extra Code Goes Here | |
| }); | |
| }); |
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
| <?php | |
| class Entropy { | |
| protected $minEntropy = 30; | |
| protected $minStrLength = 12; | |
| protected $found = []; | |
| protected $chars = []; | |
| protected $fileContents = []; | |
| protected $plusWeight = 5; | |
| protected $prevChar = 5; |
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 sys | |
| import math | |
| def get_strings_of_set(word, char_set, threshold=20): | |
| count = 0 | |
| letters = "" | |
| strings = [] | |
| for char in word: | |
| if char in char_set: | |
| letters += char |
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
| <?php // For highlighting | |
| /** | |
| * Clone a block | |
| * | |
| * @param string $blockname | |
| * @param integer $clones | |
| * @param boolean $replace | |
| * @return string|null | |
| */ | |
| public function cloneBlock($blockname, $clones = 1, $replace = true) |
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 | |
| host=$1 | |
| cleanhost(){ | |
| echo $host | sed -E 's/^http[s]?[:/]+//g' | cut -d '/' -f1 | |
| } | |
| run_nikto(){ |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvO+8ogy8LofCd1hpZFwHadkJq+ebbwOrcHfmoVeX3POe39ZExcQpnSE/v3kaGp3Puk0X4e4M0J7pLlaAQNuwBKD7sRsm7vw00v04mgKUObYStOzkhM8eGcNGGOqEsp1Wmrj30x2OqFO1zHzqreqpPnRdmz5VSMWenml+0uRLhU8XLsfZmdhGL7Zy5pLodZglHkzQ0AZ3gLuJAAq8FbTlkmjSlYPjdfE0pKztOS0EO57btp6cSiDXmghNZp53dlkWsldWRz8NzN2FEFMUaQSCy4/7onoyZ8VVxv/Yws0ES9ZUy0Q9bXbDpKjwKGbxKnxyjZaSFbycXRU/Ac7HJwBC/ p50002614@MATMITLT1702 |
OlderNewer