Initial commit

This commit is contained in:
mmichlol
2026-02-04 21:43:58 +01:00
commit f4ebea4dec
8 changed files with 520 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

181
.gitignore vendored Normal file
View File

@@ -0,0 +1,181 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# UV
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
#uv.lock
# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock
# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
.pdm.toml
.pdm-python
.pdm-build/
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Ruff stuff:
.ruff_cache/
# PyPI configuration file
.pypirc
# Cursor
# Cursor is an AI-powered code editor.`.cursorignore` specifies files/directories to
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
# refer to https://docs.cursor.com/context/ignore-files
.cursorignore
.cursorindexingignore

21
LICENSE Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2026 mmichlol
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
# SkanerV2
## Opis
Skaner V2 to kolejna odsłona naszego narzędzia do skanowania sieci lokalnej w poszukiwaniu urządzeń i otwartych portów na tych urządzeniach. Zasada działania podobna do nmap tylko napisane w pytonie, htmlu, css i js i kożystające z wygodnego interfejsu przeglądarkowego. Cały czas dodajemy do niego dodatkowe funkcje więc jak to się mówi ***"stay tuned"*** :)
## Instrukcje użytkowania
### 1. Zainstaluj potrzebne pakiety do pythona:
```
pip install flask threading requests sockets
```
### 2. Pobierz i rozpakuj plik z kodem
### 3. Przejdź do katalogu z kodem
### 4. Uruchom kod
```
python main.py
```
### 5. Przejdź do [interfejsu sieciowego](http://127.0.0.1:5000)
### 6. Kliknij "Skanuj sieć"

23
main.py Normal file
View File

@@ -0,0 +1,23 @@
from flask import Flask, render_template, jsonify
from network_scanner import NetworkScanner
import threading
import requests
app = Flask(__name__)
scanner = NetworkScanner()
@app.route('/')
def index():
return render_template('index.html') # Zwróć stronę główną
@app.route('/scan')
def scan():
# Rozpocznij skanowanie w nowym wątku
thread = threading.Thread(target=scanner.scan_network_for_devices)
thread.start()
thread.join() # Czekaj na zakończenie skanowania
return jsonify(scanner.devices) # Zwróć znalezione urządzenia jako JSON
if __name__ == '__main__':
app.run(debug=True) # Uruchom serwer

75
network_scanner.py Normal file
View File

@@ -0,0 +1,75 @@
import socket
import threading
class NetworkScanner:
def __init__(self):
self.devices = []
self.lock = threading.Lock() # Lock do synchronizacji dostępu do listy urządzeń
self.running = False
def is_port_open(self, ip, port):
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.settimeout(0.05) # Zmniejszony timeout
try:
result = sock.connect_ex((ip, port))
return result == 0
finally:
sock.close()
def scan_ip(self, ip):
ports = [21, 22, 23, 25, 53, 67, 68, 69, 70, 79, 80, 110, 111, 115, 123, 137, 138, 139, 143, 161, 162, 179, 194, 220, 389, 443, 445, 465, 514, 515, 543, 548, 554, 587, 631, 636, 646, 669, 688, 690, 700, 707, 720, 749, 750, 780, 818, 830, 843, 873, 880, 888, 990, 993, 995, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079] # Typowe porty dla urządzeń
for port in ports:
if self.is_port_open(ip, port):
with self.lock: # Użyj locka do synchronizacji
self.devices.append({"ip": ip, "port": port})
print(f"Znaleziono otwarty port {port} na {ip}")
def scan_network_for_devices(self):
self.devices.clear() # Wyczyść poprzednie wyniki
# Ustawiam prefix automatycznie
def get_ip():
# Biorę adres lokalnego interfejsu przy użyciu socketów
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.settimeout(0)
try:
s.connect(('8.8.8.8', 80)) # Łączymy się z dnsem googla żeby mieć ten adres którym komp się łączy z internetem a nie np adres wirtualnej karty sieciowej wirtualboxa albo adres pętli zwrotnej
ip = s.getsockname()[0]
except Exception:
ip = '127.0.0.1' # Jak się z niczym nie połączy ustawia na pętle zwrotną żeby nie wywaliło błędu i żeby nie zcrashowało programu
finally:
s.close() # Zamyka socket bo nie będzie już nam potrzebny
return ip
# Ustawiam sobie zmienną na adres ip
ip_address = get_ip()
# Dzielę go na 4 oktety
octets = ip_address.split(".")
# Łącze oktety ze sobą ale tu już bez ostatniego
network_prefix = ".".join(octets[:-1]) + "."
print("Rozpoczynam skanowanie sieci...")
self.running = True # Rozpocznij skanowanie
threads = []
for i in range(1, 255):
if not self.running:
print("Skanowanie przerwane.")
break
ip = f"{network_prefix}{i}"
thread = threading.Thread(target=self.scan_ip, args=(ip,))
threads.append(thread)
thread.start() # Uruchom skanowanie w nowym wątku
for thread in threads:
thread.join() # Czekaj na zakończenie wszystkich wątków
print("Skanowanie zakończone.")
# Umożliwienie importu z tego pliku
if __name__ == "__main__":
scanner = NetworkScanner()
scanner.scan_network_for_devices()

10
sendMessage.py Normal file
View File

@@ -0,0 +1,10 @@
import requests
def send_message(message, server_ip, port):
url = f'http://{server_ip}:{port}/message' # Wstaw URL serwera
data = {'message': message} # Wiadomość jako dane JSON
response = requests.post(url, json=data)
if response.status_code == 200:
print("Wiadomość została pomyślnie wysłana!")
else:
print("Błąd podczas wysyłania wiadomości:", response.status_code)

191
templates/index.html Normal file
View File

@@ -0,0 +1,191 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Skaner Sieci</title>
<style>
body {
font-family: Arial, sans-serif;
color: white;
margin: 0;
padding: 20px;
background-color: #3a3a3a;
}
.container {
max-width: 600px;
height: auto;
margin: auto;
background: #111111;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
button.mainbutton,
button.secondaryabutton {
padding: 12px 24px; /* Increase padding for a more substantial look */
border: none;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
display: block;
height: 50px;
width: 25%; /* Full width for both buttons */
transition: background 0.3s, transform 0.2s; /* Smooth transitions */
}
button.mainbutton {
background: #e4e4e4; /* Green background for main action */
color: black;
}
button.secondaryabutton {
background: #303030; /* Red background for secondary actions */
border: 1px solid #e4e4e4; /* Match border to background */
height: 50px;
}
button:hover {
background: #9e9e9e;
}
button:active {
transform: scale(0.95); /* Slightly shrink button on press */
}
.console {
margin-top: 20px;
padding: 10px;
background: #e0e0e015;
border-radius: 5px;
max-height: 200px;
overflow-y: auto;
font-family: monospace;
}
select {
width: 100%;
padding: 10px;
margin-top: 20px;
display: none; /* Ukryj na początku */
border-radius: 5px 10px 5px 10px;
}
.action-buttons {
margin-top: 20px; /* Odstęp dla akcji */
display: flex;
justify-content: space-between;
display: none; /* Ukryj przyciski akcji na początku */
height: auto;
resize: none;
}
textarea {
padding: 12px 16px; /* Match button padding */
background-color: #e4e4e4;
border: none;
color: black;
font-weight: bold;
border-radius: 5px 10px 5px 10px;
margin-right: 10px;
margin-left: 10px;
margin-top: 10px;
display: block;
resize: none;
width: 400px; /* Full width */
font-size: 16px; /* Increase font size for better readability */
}
.SSHButtonClass {
display: flex;
height: 60px;
justify-content: space-between;
}
</style>
</head>
<body>
<div class="container">
<h1>Skaner Sieci</h1>
<button class="mainbutton" id="scanButton">Skanuj Sieć</button>
<div class="console" id="console"></div>
<h1>Akcje</h1>
<select id="ipSelect"></select>
<div class="action-buttons" id="actionButtons">
<button class="secondaryabutton" id="RDPButton">Połącz (RDP)</button>
<div class="SSHButtonClass" id="SSHButtons">
<button class="secondaryabutton" id="SSHButton">Połącz (SSH)</button>
<textarea placeholder="Użytkownik SSH" id="SSHLogin"></textarea>
</div>
<button class="secondaryabutton" id="OpenButton">Otwórz</button>
</div>
</div>
<script>
document.getElementById('scanButton').onclick = function() {
fetch('/scan')
.then(response => response.json())
.then(data => {
const consoleDiv = document.getElementById('console');
consoleDiv.innerHTML = "Znalezione urządzenia:<br>";
// Wyczyść rozwijane menu z IP
const select = document.getElementById('ipSelect');
select.innerHTML = ''; // Wyczyść poprzednie opcje
// Dodaj znalezione urządzenia do konsoli i rozwijanego menu
data.forEach(device => {
consoleDiv.innerHTML += `IP: ${device.ip}, Port: ${device.port}<br>`;
const option = document.createElement('option');
option.value = device.ip;
option.textContent = device.ip;
select.appendChild(option);
});
select.style.display = 'block'; // Pokaż rozwijane menu
document.getElementById('actionButtons').style.display = 'block'; // Pokaż przyciski akcji
})
.catch(error => {
console.error('Błąd:', error);
});
};
document.getElementById('RDPButton').onclick = function() {
const selectedIp = document.getElementById('ipSelect').value;
if (selectedIp) {
const consoleDiv = document.getElementById('console');
consoleDiv.innerHTML += `Próba łączenia sie z urządzeniem ${selectedIp} poprzez RDP...<br>`;
}
};
document.getElementById('SSHButton').onclick = function() {
const selectedIp = document.getElementById('ipSelect').value;
const SSHLogin = document.getElementById('SSHLogin').value;
if (selectedIp) {
const Ip = SSHLogin + '@' + selectedIp;
const consoleDiv = document.getElementById('console');
consoleDiv.innerHTML += `Próba połączenia sie z ${selectedIp} poprzez SSH...<br>`;
}
};
document.getElementById('OpenButton').onclick = function() {
const selectedIp = document.getElementById('ipSelect').value;
if (selectedIp) {
window.open('http://' + selectedIp, '_blank');
const consoleDiv = document.getElementById('console');
consoleDiv.innerHTML += `Próba otwarcia urządzenia ${selectedIp} w przeglądarce...<br>`;
}
};
</script>
</body>
</html>