├── Investigation ├── FindOwner.py ├── FindOwner2.py ├── general.py ├── getComments.py ├── getComments2.py ├── getLinks.py ├── socialMedia1.py ├── socialMedia2.py ├── socialMedia3.py ├── socialMedia4.py ├── socialMedia5.py ├── spamControl.py └── spamControl2.py ├── LICENSE ├── MoriartyProject.py ├── README.md ├── banners └── gif.gif ├── install.sh ├── requirements.txt ├── run.sh ├── startBrowser.sh └── templates ├── GetCommentsSuccess.html ├── GetLinksSuccess.html ├── SpamRiskSuccess.html ├── failed.html ├── featureAll.html ├── findOwnerEmailPassword.html ├── findOwnerSuccess.html ├── help.html ├── index.html ├── layout.html ├── phoneNumberSuccess.html ├── result.html ├── resultErr.html ├── showoptions.html ├── socialMediaSuccess.html ├── unkownCommand.html └── unkownMail.html /Investigation/FindOwner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/FindOwner.py -------------------------------------------------------------------------------- /Investigation/FindOwner2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/FindOwner2.py -------------------------------------------------------------------------------- /Investigation/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/general.py -------------------------------------------------------------------------------- /Investigation/getComments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/getComments.py -------------------------------------------------------------------------------- /Investigation/getComments2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/getComments2.py -------------------------------------------------------------------------------- /Investigation/getLinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/getLinks.py -------------------------------------------------------------------------------- /Investigation/socialMedia1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/socialMedia1.py -------------------------------------------------------------------------------- /Investigation/socialMedia2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/socialMedia2.py -------------------------------------------------------------------------------- /Investigation/socialMedia3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/socialMedia3.py -------------------------------------------------------------------------------- /Investigation/socialMedia4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/socialMedia4.py -------------------------------------------------------------------------------- /Investigation/socialMedia5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/socialMedia5.py -------------------------------------------------------------------------------- /Investigation/spamControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/spamControl.py -------------------------------------------------------------------------------- /Investigation/spamControl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/Investigation/spamControl2.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/LICENSE -------------------------------------------------------------------------------- /MoriartyProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/MoriartyProject.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/README.md -------------------------------------------------------------------------------- /banners/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/banners/gif.gif -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/install.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/run.sh -------------------------------------------------------------------------------- /startBrowser.sh: -------------------------------------------------------------------------------- 1 | sleep 2 2 | firefox $(hostname -I | awk '{print $1}'):8080 &>/dev/null & 3 | -------------------------------------------------------------------------------- /templates/GetCommentsSuccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/GetCommentsSuccess.html -------------------------------------------------------------------------------- /templates/GetLinksSuccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/GetLinksSuccess.html -------------------------------------------------------------------------------- /templates/SpamRiskSuccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/SpamRiskSuccess.html -------------------------------------------------------------------------------- /templates/failed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/failed.html -------------------------------------------------------------------------------- /templates/featureAll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/featureAll.html -------------------------------------------------------------------------------- /templates/findOwnerEmailPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/findOwnerEmailPassword.html -------------------------------------------------------------------------------- /templates/findOwnerSuccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/findOwnerSuccess.html -------------------------------------------------------------------------------- /templates/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/help.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/phoneNumberSuccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/phoneNumberSuccess.html -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/result.html -------------------------------------------------------------------------------- /templates/resultErr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/resultErr.html -------------------------------------------------------------------------------- /templates/showoptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/showoptions.html -------------------------------------------------------------------------------- /templates/socialMediaSuccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/socialMediaSuccess.html -------------------------------------------------------------------------------- /templates/unkownCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/unkownCommand.html -------------------------------------------------------------------------------- /templates/unkownMail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzizKpln/Moriarty-Project/HEAD/templates/unkownMail.html --------------------------------------------------------------------------------