Skip to content

path-1 forwarding ports with meterpreter API using namespaces with gui supported C# program. look at open ai.lnk file to see more. #172

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from Dec 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions other/password_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,17 @@
password = ''.join(random.choice(chars) for x in range(random.randint(min_length, max_length)))
print('Password: ' + password)
print('[ If you are thinking of using this passsword, You better save it. ]')
# ALTERNATIVE METHODS
# ctbi= characters that must be in password
# i= how many letters or characters the password length will be
def password_generator(ctbi, i):
# Password generator = full boot with random_number, random_letters, and random_character FUNCTIONS
def random_number(ctbi, i):



def random_letters(ctbi, i):



def random_characters(ctbi, i):
43 changes: 43 additions & 0 deletions server.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# all imports - including #s
import socket
#import os
#import sys
#import subprocess
# end of imports
# the below classes will clarify what information is for the attacker and client
class Termrequire:
host = socket.gethostname()
port = 3333 # fake numeral for the moment
class Clientrequire:
host = socket.gethostname()
port = 2222 # fake numeral for the moment
#CORE REQUIREMENTS OF PROGRAM:
### host ip = server ip
### potential connection hosts info (host, port)
### user.config
### user.config
# using SERVER for connections and linux meterpreter sessions
# SERVER DETAILS:
#5 client availability for pivoting #although that is not yet available in a regular form of
#exploitation - we have to go with what we have.

# #learnmore - USER_CONFIG
# server ip will be displayed every connection at version 2.0
# terminal attacker socket object creation
t = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# terminal attacker socket binding
t.bind()
# terminal attacker socket listen
t.listen()
# client socket object creation
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# binding information with s.bind method
s.bind()
#listening for connections with s.listen method
s.listen(1)
# server_functionality waits for terminal shell and then gets client information connectivity
def func4client():
s.accept()
# terminal functionality for attacker - I will definitely customize it soon. Maybe tkinter?
def func4term():
t.accept()