Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/facumastri/cookie_stealer
POC about cookie stealing for Google Chrome. Intended to work on Ubuntu, Kali and Windows
https://github.com/facumastri/cookie_stealer
6669 cookie-stealer cookie-stealing cookies fiuba google-chrome kali-linux ubuntu windows
Last synced: about 2 months ago
JSON representation
POC about cookie stealing for Google Chrome. Intended to work on Ubuntu, Kali and Windows
- Host: GitHub
- URL: https://github.com/facumastri/cookie_stealer
- Owner: FacuMastri
- License: mit
- Fork: true (efoppiano/cookie_stealer)
- Created: 2023-07-19T22:21:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-20T02:24:13.000Z (over 1 year ago)
- Last Synced: 2024-09-26T14:03:57.087Z (about 2 months ago)
- Topics: 6669, cookie-stealer, cookie-stealing, cookies, fiuba, google-chrome, kali-linux, ubuntu, windows
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cookie Stealer
Prueba de concepto de un Cookie Stealer en Python. Implementado para Google Chrome tanto para Windows como para Linux (Ubuntu).
## Requisitos
- Windows 10 (22H2); Ubuntu 22.04 o superior; Kali (2021.1 o superior).
- Python 3.5 o superior.
- [pip](https://pip.pypa.io/en/stable/installation/) para la instalación de dependencias.## Creacion de entorno virtual
En ambos sistemas operativos
```bash
python3 -m venv .venv
```Luego activar el entorno virtual
### Windows
```bash
C:\> \Scripts\activate.bat
```### Ubuntu
```bash
source /bin/activate"
```Donde `` es el nombre del directorio donde se creó el entorno virtual. Por ejemplo, si el directorio se encuentra
en `/home/user/cookie-stealer`, entonces el comando seria `source /home/user/cookie-stealer/.venv/bin/activate`## Ejecucion en Windows
Parados en la raiz del proyecto.
### Instalar requerimientos
```bash
pip3 install -r requirements.txt
```### Correr server
```bash
python3 -m uvicorn server.main:app
```### Recolectar cookies y enviarlas al servidor
```bash
python3 .\stealer.py
```## Ejecución en Ubuntu
### Instalar requerimientos en Ubuntu
```bash
pip3 install -r requirements-ubuntu.txt
```### Recolectar cookies e imprimirlas por pantalla
```bash
python3 ./stealer-ubuntu.py
```