Commit Graph

22 Commits

Author SHA1 Message Date
fbfaf470a2 Update probenpwn.py 2025-02-02 17:29:54 -08:00
4ff5ce6cdf Update README.md 2025-02-02 17:29:21 -08:00
5caa22de98 Update README.md 2025-02-02 17:19:39 -08:00
1e586cb5e6 Create probenpwn.py
More aggressive, simultaneous attacks thanks to multithreading, which allows you to target multiple APs and clients at once.

Dynamic attack delays based on signal strength, ensuring more efficient attacks and better targeting of weak or strong signals.

Greater handshake capture success rate through dual attacks (deauth + association) and a refined attack strategy that adapts to real-time conditions.

Full control over your attack strategy, including the ability to exclude specific networks and clients via whitelists.

Enhanced logging for better tracking of every handshake capture and attack attempt, providing deeper insights into your progress.
2025-02-02 17:15:19 -08:00
583105e4aa Update age.py
Added age_checkpoint method in plugin is a function that is called during the on_epoch event, which occurs periodically as your Pwnagotchi goes through its training or operating cycles. The purpose of this method is likely to trigger a status update or event notification when epochs are met.
2025-02-01 20:22:55 -08:00
f553c5af9d Update README.md
With Version 2.0.1, your Pwnagotchi can now level up in style with achievements, new titles, and a decay system that keeps things exciting! Update now to track your progress and show off your milestones. 🎮🔥
2025-02-01 18:18:04 -08:00
ad6088f14f Update age.py
Pwnagotchi Age Plugin v2.0.1 - New Features and Enhancements!

Release Notes: Version 2.0.1 of the Pwnagotchi Age Plugin has just dropped! Here's what's new:

    Achievement Tiers: Unlock titles based on your activity. Titles like WiFi Deity, Handshake Titan, and Unstoppable await!
    Configurable Titles: You can now define custom titles for Age and Strength.
    Decay Mechanics: Inactivity will cause points decay—stay active or risk losing points!
    Progress Tracking: Track your network points and handshakes using a star system. Reach milestones and gain rewards!
    UI Enhancements: New dynamic status updates with motivational messages and faces that show up when you level up!

edit config.toml file: 

main.plugins.age.enabled = true
main.plugins.age.age_x_coord = 101
main.plugins.age.age_y_coord = 80
main.plugins.age.str_x_coord = 160
main.plugins.age.str_y_coord = 80
main.plugins.age.decay_interval = 50
main.plugins.age.decay_amount = 5
2025-02-01 18:08:59 -08:00
a738446937 Update age.py
Changed Stat to ReP
2024-12-21 21:01:41 -08:00
5c6d6febf2 Update age.py 2024-12-15 17:00:36 -08:00
d83baa2952 Update README.md 2024-12-15 16:58:37 -08:00
7e7acca953 Update LICENSE 2024-12-15 14:59:11 -08:00
024dda965c Update age.py 2024-12-15 14:56:57 -08:00
38b0239615 Update README.md 2024-12-15 14:52:12 -08:00
144a54bc58 Update README.md 2024-12-14 23:26:20 -08:00
1694241c21 Add files via upload
Below is an example of how you can describe the plugin’s purpose, functionality, and installation instructions in a README.md file on your GitHub repository. You can adjust the wording and formatting as you see fit:
Age, Strength, and Network Points Plugin for Pwnagotchi

Author: AlienMajik
Version: 1.0.4
License: MIT
Description

This Pwnagotchi plugin extends your Pwnagotchi’s user interface and functionality by adding three key stats:

    Age (♥ Age): Tracks how many epochs your Pwnagotchi has lived.
    Strength (Str): Indicates how much your Pwnagotchi has "trained," increasing every 10 epochs by default.
    Network Points (★ Pts): Awards points based on the type of network handshakes your Pwnagotchi captures. Stronger encryptions yield more points, weaker encryptions yield fewer. The points are logged for your reference.

Network Points Scoring:

    WPA3: +10 points
    WPA2: +5 points
    WEP/WPA: +2 points
    Open/Unknown: +1 point

Each time points are awarded, an entry is appended to /root/network_points.log with the ESSID, encryption type, points gained, and the updated total.

All stats (age, strength, network points) are saved to /root/age_strength.json, ensuring that your Pwnagotchi remembers these values across reboots.
Features

    Persistent Stats: Age, Strength, and Points survive restarts.
    UI Integration: Displays stats directly on the Pwnagotchi screen.
    Logging: Keeps a dedicated log file of network-related point gains.
    Customizable: You can tweak increments and positions via config options.
2024-12-14 23:19:32 -08:00
fd53589e0f Update README.md 2024-03-09 17:14:38 -08:00
adde3dd285 Update README.md 2024-03-09 17:13:27 -08:00
1440c943da Create neurolyzer.py
The Neurolyzer plugin introduces a significant enhancement to the Pwnagotchi platform, aiming to augment the device's stealth and privacy capabilities. Its main function is to automate the randomization of the MAC address for the designated Wi-Fi interface. This action helps make the Pwnagotchi less visible to network monitoring systems, thereby decreasing its digital footprint within the networks it scans. The plugin offers several noteworthy features:

    Varied Operational Modes: It introduces different modes of operation, including a 'stealth' mode. When activated, this mode triggers periodic changes to the device's MAC address, effectively masking its identity. This is particularly useful for operating within networks that are under strict surveillance.

    Adjustable MAC Address Change Interval: The plugin allows users to customize how frequently the MAC address changes, providing control over the degree of stealth based on the user's needs.

    User Interface Enhancements: Leveraging Pwnagotchi's existing UI framework, the Neurolyzer plugin offers immediate visual feedback on the device's screen. It displays the current mode of operation ('stealth' or 'normal') and the time until the next MAC address change. These interface elements are adjustable, enabling users to customize their display positions as needed.

    Wi-Fi Interface Customization: Users have the flexibility to define which Wi-Fi interface the plugin should manage, catering to devices with multiple or unconventional interface names.

    Seamless Activation/Deactivation: The plugin assesses its activation status upon loading, based on the configured settings, and commences its functions automatically if enabled. This feature allows for a hassle-free transition to stealth mode.

    Comprehensive Logging: The Neurolyzer plugin meticulously logs key events and potential errors during its operation. This aids in monitoring the plugin's performance and simplifying troubleshooting processes.

In essence, the Neurolyzer plugin significantly bolsters the Pwnagotchi's capability for stealthy operations, ensuring users can engage in ethical hacking and network exploration with an enhanced level of privacy. Through its thoughtful integration with the Pwnagotchi ecosystem, the plugin elevates the device's functionality, aligning with the objectives of privacy-conscious users and ethical hackers.
2024-03-09 17:00:32 -08:00
c53e94137c Update README.md 2024-02-19 00:36:35 -08:00
dd1750b9f4 Add files via upload 2024-02-18 23:21:23 -08:00
e9ac555331 Update README.md 2024-02-18 23:20:53 -08:00
a56d0ca76d Initial commit 2024-02-18 23:12:50 -08:00