diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index ae97532..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/CTFs_and_WarGames/.DS_Store b/CTFs_and_WarGames/.DS_Store deleted file mode 100644 index 8352c47..0000000 Binary files a/CTFs_and_WarGames/.DS_Store and /dev/null differ diff --git a/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/answer_pallier.py b/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/answer_pallier.py index 9f3e990..5a19696 100644 --- a/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/answer_pallier.py +++ b/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/answer_pallier.py @@ -1,6 +1,6 @@ #!/usr/bin/python -__author__ = "Mia Stein" +__author__ = "bt3gl" import decimal import socket diff --git a/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/binary_search.py b/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/binary_search.py index ae7ae37..70c942f 100644 --- a/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/binary_search.py +++ b/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/binary_search.py @@ -1,6 +1,6 @@ #!/usr/bin/python -__author__ = "Mia Stein" +__author__ = "bt3gl" import decimal diff --git a/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/nc_paillier.py b/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/nc_paillier.py index 82d7307..f747115 100644 --- a/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/nc_paillier.py +++ b/CTFs_and_WarGames/CTFs_Writeups/ASIS-final/crypto_paillier/nc_paillier.py @@ -1,6 +1,6 @@ #!/usr/bin/python -__author__ = "Mia Stein" +__author__ = "bt3gl" import decimal diff --git a/CTFs_and_WarGames/CTFs_Writeups/CSAW-quals/cryptography/crypto-200/caesarCipher.py b/CTFs_and_WarGames/CTFs_Writeups/CSAW-quals/cryptography/crypto-200/caesarCipher.py index 593e765..b569914 100644 --- a/CTFs_and_WarGames/CTFs_Writeups/CSAW-quals/cryptography/crypto-200/caesarCipher.py +++ b/CTFs_and_WarGames/CTFs_Writeups/CSAW-quals/cryptography/crypto-200/caesarCipher.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import string diff --git a/CTFs_and_WarGames/CTFs_Writeups/CSAW-quals/cryptography/crypto-200/psifer-school.py b/CTFs_and_WarGames/CTFs_Writeups/CSAW-quals/cryptography/crypto-200/psifer-school.py index b353dc2..50a0524 100644 --- a/CTFs_and_WarGames/CTFs_Writeups/CSAW-quals/cryptography/crypto-200/psifer-school.py +++ b/CTFs_and_WarGames/CTFs_Writeups/CSAW-quals/cryptography/crypto-200/psifer-school.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import sys diff --git a/CTFs_and_WarGames/WARGAMES/krypton/freq_count_vig.py b/CTFs_and_WarGames/WARGAMES/krypton/freq_count_vig.py index 9812d58..cf3307f 100644 --- a/CTFs_and_WarGames/WARGAMES/krypton/freq_count_vig.py +++ b/CTFs_and_WarGames/WARGAMES/krypton/freq_count_vig.py @@ -1,6 +1,6 @@ #!/bin/python -__author__= 'Mia Stein' +__author__= 'bt3gl' import string import sys diff --git a/Cryptography/Block_Ciphers/DES/DES_CFB_example.py b/Cryptography/Block_Ciphers/DES/DES_CFB_example.py index 2e5a721..eab4f1f 100644 --- a/Cryptography/Block_Ciphers/DES/DES_CFB_example.py +++ b/Cryptography/Block_Ciphers/DES/DES_CFB_example.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from Crypto.Cipher import DES diff --git a/Cryptography/Block_Ciphers/DES/DES_ECB_example.py b/Cryptography/Block_Ciphers/DES/DES_ECB_example.py index 1063c9f..a04e0ea 100644 --- a/Cryptography/Block_Ciphers/DES/DES_ECB_example.py +++ b/Cryptography/Block_Ciphers/DES/DES_ECB_example.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from Crypto.Cipher import DES diff --git a/Cryptography/Hash_Functions/MD5/Hash-Length-extension-attacks/VimeoHashExploit/client.py b/Cryptography/Hash_Functions/MD5/Hash-Length-extension-attacks/VimeoHashExploit/client.py index c956708..9452f7b 100644 --- a/Cryptography/Hash_Functions/MD5/Hash-Length-extension-attacks/VimeoHashExploit/client.py +++ b/Cryptography/Hash_Functions/MD5/Hash-Length-extension-attacks/VimeoHashExploit/client.py @@ -1,6 +1,6 @@ """ Adapted from Filippo Valsorda's tutorial - Mia Stein, 2014 + bt3gl, 2014 """ from md5 import MD5 diff --git a/Cryptography/Hash_Functions/MD5/brute_force_hex_digest_chars.py b/Cryptography/Hash_Functions/MD5/brute_force_hex_digest_chars.py index 029aac3..3e9e0fa 100644 --- a/Cryptography/Hash_Functions/MD5/brute_force_hex_digest_chars.py +++ b/Cryptography/Hash_Functions/MD5/brute_force_hex_digest_chars.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" ''' diff --git a/Cryptography/Hash_Functions/MD5/checksum_file.py b/Cryptography/Hash_Functions/MD5/checksum_file.py index 4cf1d11..4e3edfe 100644 --- a/Cryptography/Hash_Functions/MD5/checksum_file.py +++ b/Cryptography/Hash_Functions/MD5/checksum_file.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" ''' Calculate the MD5 checksum of a file. diff --git a/Cryptography/Rotation-Ciphers/caesarCipher.py b/Cryptography/Rotation-Ciphers/caesarCipher.py index 593e765..b569914 100644 --- a/Cryptography/Rotation-Ciphers/caesarCipher.py +++ b/Cryptography/Rotation-Ciphers/caesarCipher.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import string diff --git a/Cryptography/Rotation-Ciphers/cesarCipher_simple.py b/Cryptography/Rotation-Ciphers/cesarCipher_simple.py index ed2bce2..fead116 100644 --- a/Cryptography/Rotation-Ciphers/cesarCipher_simple.py +++ b/Cryptography/Rotation-Ciphers/cesarCipher_simple.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" ''' Cesar Ecrypt diff --git a/Cryptography/Rotation-Ciphers/cesarCipher_simple_2.py b/Cryptography/Rotation-Ciphers/cesarCipher_simple_2.py index 6ac7cef..e44a6b1 100644 --- a/Cryptography/Rotation-Ciphers/cesarCipher_simple_2.py +++ b/Cryptography/Rotation-Ciphers/cesarCipher_simple_2.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" ''' Cesar encrypt - better diff --git a/Cryptography/Rotation-Ciphers/taste_like_english.py b/Cryptography/Rotation-Ciphers/taste_like_english.py index f4cc013..b307971 100644 --- a/Cryptography/Rotation-Ciphers/taste_like_english.py +++ b/Cryptography/Rotation-Ciphers/taste_like_english.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" ''' This program calculate the frequency of letters in a files diff --git a/Linux_Hacking/README.md b/Linux_Hacking/README.md index 6824d35..91f0feb 100644 --- a/Linux_Hacking/README.md +++ b/Linux_Hacking/README.md @@ -1,4 +1,4 @@ -# Mia Stein's ol'n'good Ultimate Linux Guide for Hackers +# bt3gl's ol'n'good Ultimate Linux Guide for Hackers * I wrote this in 2013, but hey Linux is still Linux <3. diff --git a/Network_and_802.11/netaddr/send_mail.py b/Network_and_802.11/netaddr/send_mail.py index aed574d..ffcfdc1 100755 --- a/Network_and_802.11/netaddr/send_mail.py +++ b/Network_and_802.11/netaddr/send_mail.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import netaddr import socket diff --git a/Network_and_802.11/netaddr/test_netaddr.py b/Network_and_802.11/netaddr/test_netaddr.py index 144e15c..672379a 100755 --- a/Network_and_802.11/netaddr/test_netaddr.py +++ b/Network_and_802.11/netaddr/test_netaddr.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import netaddr diff --git a/Network_and_802.11/other_scripts/netcat_shell.py b/Network_and_802.11/other_scripts/netcat_shell.py index 6c38176..99f0e02 100755 --- a/Network_and_802.11/other_scripts/netcat_shell.py +++ b/Network_and_802.11/other_scripts/netcat_shell.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import os diff --git a/Network_and_802.11/paramiko/ssh_client.py b/Network_and_802.11/paramiko/ssh_client.py index b4cf2a6..6bec3f9 100755 --- a/Network_and_802.11/paramiko/ssh_client.py +++ b/Network_and_802.11/paramiko/ssh_client.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import paramiko diff --git a/Network_and_802.11/paramiko/ssh_client_reverse.py b/Network_and_802.11/paramiko/ssh_client_reverse.py index bb96f1e..02f7bb7 100755 --- a/Network_and_802.11/paramiko/ssh_client_reverse.py +++ b/Network_and_802.11/paramiko/ssh_client_reverse.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import paramiko diff --git a/Network_and_802.11/paramiko/ssh_server.py b/Network_and_802.11/paramiko/ssh_server.py index d323e1d..014b7ef 100755 --- a/Network_and_802.11/paramiko/ssh_server.py +++ b/Network_and_802.11/paramiko/ssh_server.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import paramiko diff --git a/Network_and_802.11/scapy/README.md b/Network_and_802.11/scapy/README.md index 4b4e202..6f83564 100644 --- a/Network_and_802.11/scapy/README.md +++ b/Network_and_802.11/scapy/README.md @@ -1,4 +1,4 @@ -# The Scapy Module (by Mia Stein) +# The Scapy Module (by bt3gl) [Scapy](http://www.secdev.org/projects/scapy/) is able to send and capture packets of several protocols, forging and decoding them to be used to most network tasks such as scanning, tracerouting, probing, attacks, and network discovery. diff --git a/Network_and_802.11/scapy/arp_cache_poisoning.py b/Network_and_802.11/scapy/arp_cache_poisoning.py index 5c3b400..ca11b5c 100644 --- a/Network_and_802.11/scapy/arp_cache_poisoning.py +++ b/Network_and_802.11/scapy/arp_cache_poisoning.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" ''' To run you need to tell the local host machine to forward packets along diff --git a/Network_and_802.11/scapy/ddos.py b/Network_and_802.11/scapy/ddos.py index 24fb102..f417737 100644 --- a/Network_and_802.11/scapy/ddos.py +++ b/Network_and_802.11/scapy/ddos.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import threading import socket diff --git a/Network_and_802.11/scapy/dns_poisoning.py b/Network_and_802.11/scapy/dns_poisoning.py index 92ad59b..2fc2f16 100644 --- a/Network_and_802.11/scapy/dns_poisoning.py +++ b/Network_and_802.11/scapy/dns_poisoning.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * from scapy.layers.l2 import * diff --git a/Network_and_802.11/scapy/example_hexdump.py b/Network_and_802.11/scapy/example_hexdump.py index d50e943..7a1770b 100644 --- a/Network_and_802.11/scapy/example_hexdump.py +++ b/Network_and_802.11/scapy/example_hexdump.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/icmp_ping_sweep.py b/Network_and_802.11/scapy/icmp_ping_sweep.py index 7793af5..55893b1 100644 --- a/Network_and_802.11/scapy/icmp_ping_sweep.py +++ b/Network_and_802.11/scapy/icmp_ping_sweep.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * import netaddr diff --git a/Network_and_802.11/scapy/nmap.py b/Network_and_802.11/scapy/nmap.py index 1e08d51..d07e206 100644 --- a/Network_and_802.11/scapy/nmap.py +++ b/Network_and_802.11/scapy/nmap.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * import random diff --git a/Network_and_802.11/scapy/os_fingerpringing.py b/Network_and_802.11/scapy/os_fingerpringing.py index ea18de4..cd19477 100644 --- a/Network_and_802.11/scapy/os_fingerpringing.py +++ b/Network_and_802.11/scapy/os_fingerpringing.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/pcap_processing.py b/Network_and_802.11/scapy/pcap_processing.py index 5e0efa0..237b2ea 100644 --- a/Network_and_802.11/scapy/pcap_processing.py +++ b/Network_and_802.11/scapy/pcap_processing.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import re diff --git a/Network_and_802.11/scapy/ping.py b/Network_and_802.11/scapy/ping.py index de06319..6ce13df 100644 --- a/Network_and_802.11/scapy/ping.py +++ b/Network_and_802.11/scapy/ping.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from sys import argv, exit from os import path diff --git a/Network_and_802.11/scapy/plotting.py b/Network_and_802.11/scapy/plotting.py index 4163a99..7d1c836 100644 --- a/Network_and_802.11/scapy/plotting.py +++ b/Network_and_802.11/scapy/plotting.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/receive_packet.py b/Network_and_802.11/scapy/receive_packet.py index 82a5ef8..fd3599a 100644 --- a/Network_and_802.11/scapy/receive_packet.py +++ b/Network_and_802.11/scapy/receive_packet.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/route.py b/Network_and_802.11/scapy/route.py index dff6936..1d7d707 100644 --- a/Network_and_802.11/scapy/route.py +++ b/Network_and_802.11/scapy/route.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/scanning_ip.py b/Network_and_802.11/scapy/scanning_ip.py index 6bae0ca..438075d 100644 --- a/Network_and_802.11/scapy/scanning_ip.py +++ b/Network_and_802.11/scapy/scanning_ip.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import sys import random diff --git a/Network_and_802.11/scapy/scanning_port.py b/Network_and_802.11/scapy/scanning_port.py index 35049c8..c8d6f4e 100644 --- a/Network_and_802.11/scapy/scanning_port.py +++ b/Network_and_802.11/scapy/scanning_port.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import sys from scapy.all import * diff --git a/Network_and_802.11/scapy/send_packet.py b/Network_and_802.11/scapy/send_packet.py index 3f07344..b6696b0 100644 --- a/Network_and_802.11/scapy/send_packet.py +++ b/Network_and_802.11/scapy/send_packet.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/sniff_simple.py b/Network_and_802.11/scapy/sniff_simple.py index f2d4843..051a53d 100644 --- a/Network_and_802.11/scapy/sniff_simple.py +++ b/Network_and_802.11/scapy/sniff_simple.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/ssid.py b/Network_and_802.11/scapy/ssid.py index f6b9b10..7e14e86 100644 --- a/Network_and_802.11/scapy/ssid.py +++ b/Network_and_802.11/scapy/ssid.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/stealing_emails.py b/Network_and_802.11/scapy/stealing_emails.py index fd61753..5fbab87 100644 --- a/Network_and_802.11/scapy/stealing_emails.py +++ b/Network_and_802.11/scapy/stealing_emails.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" ''' A simple sniffer to capture SMTP, POP3, IMAP credentials''' diff --git a/Network_and_802.11/scapy/super_scanner.py b/Network_and_802.11/scapy/super_scanner.py index 7c4fbb9..fee2d6d 100644 --- a/Network_and_802.11/scapy/super_scanner.py +++ b/Network_and_802.11/scapy/super_scanner.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * import netaddr diff --git a/Network_and_802.11/scapy/tcp_handshake.py b/Network_and_802.11/scapy/tcp_handshake.py index fafe85b..d28077a 100644 --- a/Network_and_802.11/scapy/tcp_handshake.py +++ b/Network_and_802.11/scapy/tcp_handshake.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/third_party_mod.py b/Network_and_802.11/scapy/third_party_mod.py index cc84671..0dccf3b 100644 --- a/Network_and_802.11/scapy/third_party_mod.py +++ b/Network_and_802.11/scapy/third_party_mod.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/scapy/tools.py b/Network_and_802.11/scapy/tools.py index 1943911..fc4f9a2 100644 --- a/Network_and_802.11/scapy/tools.py +++ b/Network_and_802.11/scapy/tools.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from scapy.all import * diff --git a/Network_and_802.11/socket/crack_linksys.py b/Network_and_802.11/socket/crack_linksys.py index 4929a2d..40143b8 100755 --- a/Network_and_802.11/socket/crack_linksys.py +++ b/Network_and_802.11/socket/crack_linksys.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import socket diff --git a/Network_and_802.11/socket/netcat_awesome.py b/Network_and_802.11/socket/netcat_awesome.py index 61acfa4..b2eb828 100755 --- a/Network_and_802.11/socket/netcat_awesome.py +++ b/Network_and_802.11/socket/netcat_awesome.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import socket diff --git a/Network_and_802.11/socket/netcat_simple.py b/Network_and_802.11/socket/netcat_simple.py index 6e1a196..b287cf8 100755 --- a/Network_and_802.11/socket/netcat_simple.py +++ b/Network_and_802.11/socket/netcat_simple.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import socket diff --git a/Network_and_802.11/socket/tcp_client.py b/Network_and_802.11/socket/tcp_client.py index 2b8f106..a57fc83 100755 --- a/Network_and_802.11/socket/tcp_client.py +++ b/Network_and_802.11/socket/tcp_client.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import socket diff --git a/Network_and_802.11/socket/tcp_proxy.py b/Network_and_802.11/socket/tcp_proxy.py index 1fce02a..f4415ff 100755 --- a/Network_and_802.11/socket/tcp_proxy.py +++ b/Network_and_802.11/socket/tcp_proxy.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import socket diff --git a/Network_and_802.11/socket/tcp_server.py b/Network_and_802.11/socket/tcp_server.py index 1482717..f20bc0a 100755 --- a/Network_and_802.11/socket/tcp_server.py +++ b/Network_and_802.11/socket/tcp_server.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import socket diff --git a/Network_and_802.11/socket/udp_client.py b/Network_and_802.11/socket/udp_client.py index 890f08b..fb3f116 100755 --- a/Network_and_802.11/socket/udp_client.py +++ b/Network_and_802.11/socket/udp_client.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import socket diff --git a/Network_and_802.11/socket/udp_server.py b/Network_and_802.11/socket/udp_server.py index 46f8e2d..e2b369c 100755 --- a/Network_and_802.11/socket/udp_server.py +++ b/Network_and_802.11/socket/udp_server.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" import socket diff --git a/Network_and_802.11/telnetlib/reading_telnet.py b/Network_and_802.11/telnetlib/reading_telnet.py index 0cb251e..3de2c26 100644 --- a/Network_and_802.11/telnetlib/reading_telnet.py +++ b/Network_and_802.11/telnetlib/reading_telnet.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" from telnetlib import Telnet diff --git a/Other_Hackings/useful_scripts/find_word_inside_text.py b/Other_Hackings/useful_scripts/find_word_inside_text.py index 4b8392a..069180e 100644 --- a/Other_Hackings/useful_scripts/find_word_inside_text.py +++ b/Other_Hackings/useful_scripts/find_word_inside_text.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" # given two text, find the difference between them # useful for ciphers, for example vinegere, when diff --git a/Steganography/Images/.DS_Store b/Steganography/Images/.DS_Store index 2bc3276..8af1de7 100644 Binary files a/Steganography/Images/.DS_Store and b/Steganography/Images/.DS_Store differ diff --git a/Steganography/Images/xor_and_adding/compare_two_images.py b/Steganography/Images/xor_and_adding/compare_two_images.py index 2852215..91f9753 100755 --- a/Steganography/Images/xor_and_adding/compare_two_images.py +++ b/Steganography/Images/xor_and_adding/compare_two_images.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__='Mia Stein' +__author__='bt3gl' ''' Compare two aligned images of the same size. diff --git a/Steganography/Images/xor_and_adding/xor_bytes.py b/Steganography/Images/xor_and_adding/xor_bytes.py index 62a1cb2..e29887a 100644 --- a/Steganography/Images/xor_and_adding/xor_bytes.py +++ b/Steganography/Images/xor_and_adding/xor_bytes.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -__author__ = "Mia Stein" +__author__ = "bt3gl" def xor_str(str1, str2):