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
http://www.amazon.com/Hacker-Disassembling-Uncovered-Techniques-Programming/dp/1931769222/ref=sr_1_1?ie=UTF8&qid=1340228704&sr=8-1&keywords=disassembling | |
http://www.amazon.com/x86-Disassembly-Exploring-relationship-Assembly/dp/1466346051/ref=sr_1_1?ie=UTF8&qid=1340228719&sr=8-1&keywords=disassembly | |
http://www.amazon.com/Introduction-Intel-Assembly-Language-Programming/dp/1466470038/ref=pd_bxgy_b_text_b | |
http://www.amazon.com/Reversing-Secrets-Engineering-Eldad-Eilam/dp/0764574817/ref=pd_bxgy_b_text_c | |
http://www.amazon.com/Valgrind-3-3-Debugging-Profiling-applications/dp/0954612051/ref=pd_sim_b_12 | |
http://www.amazon.com/An-Introduction-GCC-For-Compilers/dp/0954161793/ref=pd_bxgy_b_text_c | |
http://www.amazon.com/Emotions-Revealed-Second-Edition-Communication/dp/0805083391/ref=pd_sim_b_40 | |
http://www.amazon.com/Introducing-NLP-Psychological-Understanding-Neuro-Linguistic/dp/1573244988/ref=pd_sim_b_10 | |
http://www.amazon.com/Hacker-Debugging-Uncovered-Kris-Kaspersky/dp/1931769400/ref=pd_sim_b_7 | |
http://www.amazon.com/gp/ |
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
grep -o '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}' |
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
findstr /si password *.txt |*.xml|*.ini |
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
# or condition | |
grep -E 'pattern1|pattern2' filename | |
\\ egrep = grep -E | |
# And condition | |
grep -E 'pattern1.*pattern2' filename | |
# NOT |
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
dbus-glib install |
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
! URXVT GENERAL CONFIG | |
!------------------------------------------------ | |
URxvt.geometry: 101x20 | |
URxvt.imLocale: en_US.UTF-8 | |
! URXVT FONTS | |
!------------------------------------------------ | |
urxvt.letterSpace:1 | |
urxvt.lineSpace: 1 | |
urxvt*font: xft:lucy Tewi:size=10 |
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
install setcap command. | |
#setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/sbin/dumpcap | |
>su | |
#chown root /usr/sbin/dumpcap | |
#chmod u+s /usr/bin/dumpcap | |
Limiting capture permission to only one group | |
After having set dumpcap's network privileges: |
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
Description='NJITsecure' | |
Interface=wlp2s0 | |
Connection=wireless | |
Security=wpa-configsection | |
IP=dhcp | |
ESSID=NJITsecure | |
WPAConfigSection=( | |
'ssid="NJITsecure"' | |
'proto=RSN' | |
'key_mgmt=WPA-EAP' |
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
USER HOST=NOPASSWD:/PATH/TO/FILE # u+x permission |
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
# Installation on Dell XPS 9570 | |
# Connect to Internet | |
wifi-menu | |
# Sync clock | |
timedatectl set-ntp true | |
# Create three partitions: |
OlderNewer