├── .gitignore ├── JIRA_hackGPT.py ├── PwnAI_depreciated ├── PwnAI.ipynb ├── PwnAI_bulk.py ├── hackGPT.py └── hackGPTchatBot.py ├── README.md ├── chatbot ├── README.md ├── chatbot.py ├── hackgpt_fav.png ├── personas │ ├── JavaScript Console_remote.md │ ├── Linux_Terminal_remote.md │ ├── ThreatHunter.md │ └── hackGPTv1.md └── requirements.txt ├── dev_hackGPTp ├── LLM │ └── LLM_readme.md ├── README.md ├── constants.py ├── db │ └── db_readme.md ├── dev_hackGPTp.py ├── example.env ├── hackGPTp.py ├── ingest.py ├── input │ └── files │ │ ├── crowdstrike2023globalthreatreport.pdf │ │ └── crowdstrike2023globalthreatreport.txt ├── requirements.txt ├── sample.env └── source_documents │ ├── National-Cybersecurity-Strategy-Implementation-Plan-WH.gov_.pdf │ └── National-Cybersecurity-Strategy-Implementation-Plan-WH.gov_.txt ├── hackGPT.py ├── hackGPT_local ├── README.md └── hackGPT_local.py ├── hackGPTv23.py ├── hackerParents ├── hackerParents.py ├── parent_persona │ ├── Parent of 13 year old.md │ ├── Parent of 16 year old.md │ └── Parent_Needing_Immediate_Help.md ├── requirements.txt ├── res │ ├── ChattyGPT.png │ ├── PwnAI_notebook.png │ ├── hackGPT_logo.png │ ├── hackgpt_fav.png │ └── tools │ │ └── csv_hack ├── social_data.csv └── style.css ├── hackthropic ├── README.md ├── hacked.png ├── hackthropic_720.mov ├── hackthropic_MSF_Install_Prompt.md └── start_hacking.sh ├── input ├── code ├── malware │ └── malware_sample ├── sample_sources └── twitter ├── jailbreaks.csv ├── mobile └── ios │ └── 23.shortcut ├── notebooks ├── chat.hackGPT.ipynb ├── hacklab.hackGPT.ipynb └── output │ └── chat_hackGPT_log.csv ├── output ├── ChatGPT_CVE_PoC_Defense │ └── results │ │ ├── CVE-2022-34819 .txt │ │ ├── CVE-2022-34820 .txt │ │ ├── CVE-2022-34821 .txt │ │ ├── CVE-2022-34877 .txt │ │ └── CVE-2022-34878 .txt ├── ChatGPT_CVE_PoCs │ └── results │ │ ├── CVE-2022-34819 .txt │ │ ├── CVE-2022-34820 .txt │ │ ├── CVE-2022-34821 .txt │ │ ├── CVE-2022-34877 .txt │ │ └── CVE-2022-34878 .txt ├── PwnAI │ └── results │ │ ├── Core.cs.txt │ │ └── meterpreter.py .txt ├── chat_hackGPT_log.csv └── music │ └── README.md ├── personas ├── DANv11.md ├── DEVv1.md ├── None.md └── hackGPTv1.md ├── requirements.txt ├── res ├── ChattyGPT.png ├── PwnAI_notebook.png ├── gh.png ├── github.png ├── hackGPT_logo.png ├── hackgpt_fav.png └── tools │ └── csv_hack └── slidedecks └── hackGPT_v23.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | 4 | .vscode/settings.json 5 | 6 | .env 7 | -------------------------------------------------------------------------------- /JIRA_hackGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/JIRA_hackGPT.py -------------------------------------------------------------------------------- /PwnAI_depreciated/PwnAI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/PwnAI_depreciated/PwnAI.ipynb -------------------------------------------------------------------------------- /PwnAI_depreciated/PwnAI_bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/PwnAI_depreciated/PwnAI_bulk.py -------------------------------------------------------------------------------- /PwnAI_depreciated/hackGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/PwnAI_depreciated/hackGPT.py -------------------------------------------------------------------------------- /PwnAI_depreciated/hackGPTchatBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/PwnAI_depreciated/hackGPTchatBot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/README.md -------------------------------------------------------------------------------- /chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/chatbot/README.md -------------------------------------------------------------------------------- /chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/chatbot/chatbot.py -------------------------------------------------------------------------------- /chatbot/hackgpt_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/chatbot/hackgpt_fav.png -------------------------------------------------------------------------------- /chatbot/personas/JavaScript Console_remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/chatbot/personas/JavaScript Console_remote.md -------------------------------------------------------------------------------- /chatbot/personas/Linux_Terminal_remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/chatbot/personas/Linux_Terminal_remote.md -------------------------------------------------------------------------------- /chatbot/personas/ThreatHunter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/chatbot/personas/ThreatHunter.md -------------------------------------------------------------------------------- /chatbot/personas/hackGPTv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/chatbot/personas/hackGPTv1.md -------------------------------------------------------------------------------- /chatbot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/chatbot/requirements.txt -------------------------------------------------------------------------------- /dev_hackGPTp/LLM/LLM_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/LLM/LLM_readme.md -------------------------------------------------------------------------------- /dev_hackGPTp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/README.md -------------------------------------------------------------------------------- /dev_hackGPTp/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/constants.py -------------------------------------------------------------------------------- /dev_hackGPTp/db/db_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/db/db_readme.md -------------------------------------------------------------------------------- /dev_hackGPTp/dev_hackGPTp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/dev_hackGPTp.py -------------------------------------------------------------------------------- /dev_hackGPTp/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/example.env -------------------------------------------------------------------------------- /dev_hackGPTp/hackGPTp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/hackGPTp.py -------------------------------------------------------------------------------- /dev_hackGPTp/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/ingest.py -------------------------------------------------------------------------------- /dev_hackGPTp/input/files/crowdstrike2023globalthreatreport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/input/files/crowdstrike2023globalthreatreport.pdf -------------------------------------------------------------------------------- /dev_hackGPTp/input/files/crowdstrike2023globalthreatreport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/input/files/crowdstrike2023globalthreatreport.txt -------------------------------------------------------------------------------- /dev_hackGPTp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/requirements.txt -------------------------------------------------------------------------------- /dev_hackGPTp/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/sample.env -------------------------------------------------------------------------------- /dev_hackGPTp/source_documents/National-Cybersecurity-Strategy-Implementation-Plan-WH.gov_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/source_documents/National-Cybersecurity-Strategy-Implementation-Plan-WH.gov_.pdf -------------------------------------------------------------------------------- /dev_hackGPTp/source_documents/National-Cybersecurity-Strategy-Implementation-Plan-WH.gov_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/dev_hackGPTp/source_documents/National-Cybersecurity-Strategy-Implementation-Plan-WH.gov_.txt -------------------------------------------------------------------------------- /hackGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackGPT.py -------------------------------------------------------------------------------- /hackGPT_local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackGPT_local/README.md -------------------------------------------------------------------------------- /hackGPT_local/hackGPT_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackGPT_local/hackGPT_local.py -------------------------------------------------------------------------------- /hackGPTv23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackGPTv23.py -------------------------------------------------------------------------------- /hackerParents/hackerParents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/hackerParents.py -------------------------------------------------------------------------------- /hackerParents/parent_persona/Parent of 13 year old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/parent_persona/Parent of 13 year old.md -------------------------------------------------------------------------------- /hackerParents/parent_persona/Parent of 16 year old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/parent_persona/Parent of 16 year old.md -------------------------------------------------------------------------------- /hackerParents/parent_persona/Parent_Needing_Immediate_Help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/parent_persona/Parent_Needing_Immediate_Help.md -------------------------------------------------------------------------------- /hackerParents/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/requirements.txt -------------------------------------------------------------------------------- /hackerParents/res/ChattyGPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/res/ChattyGPT.png -------------------------------------------------------------------------------- /hackerParents/res/PwnAI_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/res/PwnAI_notebook.png -------------------------------------------------------------------------------- /hackerParents/res/hackGPT_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/res/hackGPT_logo.png -------------------------------------------------------------------------------- /hackerParents/res/hackgpt_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/res/hackgpt_fav.png -------------------------------------------------------------------------------- /hackerParents/res/tools/csv_hack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/res/tools/csv_hack -------------------------------------------------------------------------------- /hackerParents/social_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/social_data.csv -------------------------------------------------------------------------------- /hackerParents/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackerParents/style.css -------------------------------------------------------------------------------- /hackthropic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackthropic/README.md -------------------------------------------------------------------------------- /hackthropic/hacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackthropic/hacked.png -------------------------------------------------------------------------------- /hackthropic/hackthropic_720.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackthropic/hackthropic_720.mov -------------------------------------------------------------------------------- /hackthropic/hackthropic_MSF_Install_Prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackthropic/hackthropic_MSF_Install_Prompt.md -------------------------------------------------------------------------------- /hackthropic/start_hacking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/hackthropic/start_hacking.sh -------------------------------------------------------------------------------- /input/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/input/code -------------------------------------------------------------------------------- /input/malware/malware_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/input/malware/malware_sample -------------------------------------------------------------------------------- /input/sample_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/input/sample_sources -------------------------------------------------------------------------------- /input/twitter: -------------------------------------------------------------------------------- 1 | #hacking -------------------------------------------------------------------------------- /jailbreaks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/jailbreaks.csv -------------------------------------------------------------------------------- /mobile/ios/23.shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/mobile/ios/23.shortcut -------------------------------------------------------------------------------- /notebooks/chat.hackGPT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/notebooks/chat.hackGPT.ipynb -------------------------------------------------------------------------------- /notebooks/hacklab.hackGPT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/notebooks/hacklab.hackGPT.ipynb -------------------------------------------------------------------------------- /notebooks/output/chat_hackGPT_log.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34819 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34819 .txt -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34820 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34820 .txt -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34821 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34821 .txt -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34877 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34877 .txt -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34878 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoC_Defense/results/CVE-2022-34878 .txt -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoCs/results/CVE-2022-34819 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoCs/results/CVE-2022-34819 .txt -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoCs/results/CVE-2022-34820 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoCs/results/CVE-2022-34820 .txt -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoCs/results/CVE-2022-34821 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoCs/results/CVE-2022-34821 .txt -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoCs/results/CVE-2022-34877 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoCs/results/CVE-2022-34877 .txt -------------------------------------------------------------------------------- /output/ChatGPT_CVE_PoCs/results/CVE-2022-34878 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/ChatGPT_CVE_PoCs/results/CVE-2022-34878 .txt -------------------------------------------------------------------------------- /output/PwnAI/results/Core.cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/PwnAI/results/Core.cs.txt -------------------------------------------------------------------------------- /output/PwnAI/results/meterpreter.py .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/PwnAI/results/meterpreter.py .txt -------------------------------------------------------------------------------- /output/chat_hackGPT_log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/chat_hackGPT_log.csv -------------------------------------------------------------------------------- /output/music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/output/music/README.md -------------------------------------------------------------------------------- /personas/DANv11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/personas/DANv11.md -------------------------------------------------------------------------------- /personas/DEVv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/personas/DEVv1.md -------------------------------------------------------------------------------- /personas/None.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /personas/hackGPTv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/personas/hackGPTv1.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/ChattyGPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/res/ChattyGPT.png -------------------------------------------------------------------------------- /res/PwnAI_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/res/PwnAI_notebook.png -------------------------------------------------------------------------------- /res/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/res/gh.png -------------------------------------------------------------------------------- /res/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/res/github.png -------------------------------------------------------------------------------- /res/hackGPT_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/res/hackGPT_logo.png -------------------------------------------------------------------------------- /res/hackgpt_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/res/hackgpt_fav.png -------------------------------------------------------------------------------- /res/tools/csv_hack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/res/tools/csv_hack -------------------------------------------------------------------------------- /slidedecks/hackGPT_v23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoDataFound/hackGPT/HEAD/slidedecks/hackGPT_v23.pdf --------------------------------------------------------------------------------