Skip to content

deadcyph3r/piCopilot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

piCopilot

piCopilot is an ecosystem for autonomous workflows with any portable system that is Debian based. This means piCopilot is perfect for a device like the Raspberry Pi. It has been tailored for the world of unmanned Intelligence, Surveillance and Reconnaissance.

Whether acting as a Copilot during air || land || sea missions, tracking 802.11 signals, kinetic interaction with objects, home defense, physical offense, or some other interesting integration; piCopilot stands ready to assist the operator with whatever may come.

piCopilot is 100% feedback driven. If you like piCopilot and wish to contribute, simply fork and PR.

Certain aspects of piCopilot may not be legal in every Country or locality. Ensure that you check the rules and regulations for where you will be operating prior to use. The operator is fully and wholly responsible for any legal and/or civil issues that may arise from their usage of piCopilot.

Publically shared packages

  • piCopilot
    • The ecosystem
  • piCopilot-idrop
    • Intrusion Detection Reaction Observation Platform
  • piCopilot-scripts
    • Useful scripts for piCopilot usage across the ecosystem
  • piCopilot-unmanned
    • Pi powered Copilot for Unmanned Systems
  • piCopilot-wifi
    • WiFi meta-package for piCopilot

Getting started

  1. Create image for a Raspberry Pi

    • Refer to notes in RELEASE
    • Burn the image
    • Boot the Raspberry Pi
  2. When piCopilot first boots it will be running in hostapd mode.

    • Set your wifi NIC to 192.168.10.10/24
    • Connect to the wifi ESSID called myPi
    • The password is piCopilotAP
  3. Connecting piCopilot to the Internet.

    • Modify /etc/wpa_supplicant/wpa_supplicant.conf accordingly
    • Remove the # in /etc/network/interfaces.d/wlan0
    • Give /etc/resolv.conf a nameserver
  4. Setup piCopilot-idrop

  5. Verify piCopilot-idrop is running and setup external USB NIC for 802.11

  6. Setup piCopilot-idrop database

    • Power on the system
    • systemctl enable postgresql
    • systemctl start postgresql
## As root, do:
su postgres
cd
createuser root -P --interactive
    #Enter password for new role: <idrop>
    #Shall the new role be a superuser? (y/n) n
    #Shall the new role be allowed to create databases? (y/n) y
    #Shall the new role be allowed to create more new roles? (y/n) y
psql
## ALTER ROLE root WITH PASSWORD 'password'; ## << how to change root for later
CREATE DATABASE idrop;
GRANT pg_write_server_files TO root;
crtl+d
exit
mkdir /opt/piCopilot-idrop/logs
chown -R postgres /opt/piCopilot-idrop/logs
  1. Prep threading, packetEssentials and Grafana

  2. Let the system run for at least 5 minutes to collect initial information about your location

  3. Setup Grafana and visualize your findings

    • Proceed to http:https://192.168.10.254:3000/login
    • Login with admin:admin
    • Change the default Grafana password
    • Select Add data source
    • Choose PostgreSQL
      • 127.0.0.1:5432
      • disable ssl mode
    • Select Save & test
    • Select back
    • Proceed back to http:https://192.168.10.254:3000/
    • Select the + | Create | Import
    • Select Upload .json file
    • Choose the example json in kickstart/IDS_Example.json
    • Import
      • Example data should now be visible

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published