This file contains 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
"""Print most frequent N-grams in given file. | |
Usage: python ngrams.py filename | |
Problem description: Build a tool which receives a corpus of text, | |
analyses it and reports the top 10 most frequent bigrams, trigrams, | |
four-grams (i.e. most frequently occurring two, three and four word | |
consecutive combinations). | |
NOTES |
This file contains 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
# When the cache is clear, pip is working again. | |
hash -r | |
1. sudo apt-get install python3 python-dev python3-dev build-essential libssl-dev libffi-dev libxml2-dev libxslt-dev python3-pip | |
2. sudo pip3 install virtualenvwrapper | |
3. workon [try this command in terminal if it not works go to point 4] | |
4. source /usr/local/bin/virtualenvwrapper.sh (or) source ~/.local/bin/virtualenvwrapper.sh |
This file contains 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/env python | |
## using SAGE RSA | |
n = 80646413 | |
p = floor(sqrt(80646413)) | |
### Finding Factor p*q = n | |
while(true): |
This file contains 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/python | |
import crypt, getpass, pwd | |
def main(): | |
print "##### This programs helps to understand the username/password storage in Operating System #######\n" | |
username = raw_input('Python login:') | |
try: | |
cryptedpasswd = pwd.getpwnam(username).pw_passwd | |
except KeyError: |
This file contains 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/python | |
import pwd | |
from tabulate import tabulate | |
def main(): | |
pwd_headers = ["pw_name", "pw_passwd", "pw_uid", "pw_gid", "pw_gecos", "pw_dir", "pw_shell"] | |
passwd_entries = pwd.getpwall() | |
pwd_list = [] | |
for (pw_name, pw_passwd, pw_uid, pw_gid, pw_gecos, pw_dir, pw_shell) in passwd_entries: |
This file contains 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
>>> pwd.struct_pwent(['root', 'toor', '502', '20', 'Vijay', '/var/root/', '/bin/sh']) | |
pwd.struct_passwd(pw_name='root', pw_passwd='toor', pw_uid='502', pw_gid='20', pw_gecos='Vijay', pw_dir='/var/root/', pw_shell='/bin/sh') | |
>>> pwd.struct_passwd(['root', 'toor', '502', '20', 'Vijay', '/var/root/', '/bin/sh']) | |
pwd.struct_passwd(pw_name='root', pw_passwd='toor', pw_uid='502', pw_gid='20', pw_gecos='Vijay', pw_dir='/var/root/', pw_shell='/bin/sh') |
This file contains 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/python | |
import socket | |
def main(): | |
ip = raw_input("ENTER THE TARGET IP ADDRESS: ") | |
for port in range(1, 65535): | |
s = socket.socket | |
try: | |
s = s(socket.AF_INET, socket.SOCK_STREAM) |
This file contains 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/env python | |
import dpkt | |
import sys | |
import socket | |
import urlparse | |
captured_pcap = file("captured.pcap", 'rb') | |
fpcap = dpkt.pcap.Reader(captured_pcap) |
This file contains 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
#include<stdio.h> | |
#include<conio.h> | |
int main(int argc, char *argv[]) | |
{ | |
if (argc < 2) | |
{ | |
printf("%s \n", "Pass your name as the argument"); | |
return 0; | |
} |
This file contains 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
#To explore the metasploit framework | |
cd /usr/share/metasploit-framework/ | |
#To explore the modules | |
cd modules/ | |
#To explore the available exploits | |
cd exploits/ | |
#Before using the metasploit start the Postgres SQL database which will use to track what you do |