Skip to content

Commit

Permalink
Converted CreepyAI-25 to a normal folder
Browse files Browse the repository at this point in the history
  • Loading branch information
gs-ai committed Mar 2, 2025
1 parent 1b333a6 commit a232d52
Show file tree
Hide file tree
Showing 131 changed files with 41,164 additions and 1 deletion.
1 change: 0 additions & 1 deletion CreepyAI-25
Submodule CreepyAI-25 deleted from 712fba
217 changes: 217 additions & 0 deletions CreepyAI-25/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,217 @@
#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results

[Dd]ebug/
[Rr]elease/
x64/
build/
[Bb]in/
[Oo]bj/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.log
*.scc

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.Publish.xml
*.pubxml

# NuGet Packages Directory
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
#packages/

# Windows Azure Build Output
csx
*.build.csdef

# Windows Store app package directory
AppPackages/

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
App_Data/*.mdf
App_Data/*.ldf

#############
## Windows detritus
#############

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Mac crap
.DS_Store


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.egg-info
dist/
build/
eggs/
parts/
var/
sdist/
develop-eggs/
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg


31 changes: 31 additions & 0 deletions CreepyAI-25/TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
The main features of the current program are:

* Geolocation OSINT tool that gathers geolocation-related information from online sources.
* Allows for presentation of gathered information on a map.
* Provides search filtering based on exact location and/or date.
* Supports export of data in CSV format or KML for further analysis in Google Maps.
* Includes a graphical user interface built with PyQt5.
* Supports multiple plugins for different online sources, such as Flickr, Instagram, and Twitter.
* Provides a configuration wizard for some plugins to help with authentication and setup.
* Allows for the creation and management of projects, including person-based projects.
* Supports filtering of locations by date and position.
* Provides options to show a heatmap of locations.
* Includes functionality to check for updates and report problems.
* Supports logging and capturing of stdout and stderr to log files.

The main files and directories related to these features are:
* `creepy/CreepyMain.py` - Main application file.
* `creepy/models/InputPlugin.py` - Base class for input plugins.
* `creepy/models/Location.py` - Location model.
* `creepy/models/LocationsList.py` - Locations table model.
* `creepy/models/PluginConfigurationListModel.py` - Plugin configuration list model.
* `creepy/models/Project.py` - Project model.
* `creepy/models/ProjectTree.py` - Project tree model.
* `creepy/models/ProjectWizardPluginListModel.py` - Project wizard plugin list model.
* `creepy/models/ProjectWizardPossibleTargetsTable.py` - Project wizard possible targets table model.
* `creepy/models/ProjectWizardSelectedTargetsTable.py` - Project wizard selected targets table model.
* `creepy/plugins/flickr/flickr.py` - Flickr plugin.
* `creepy/plugins/instagram/instagram.py` - Instagram plugin.
* `creepy/plugins/twitter/twitter.py` - Twitter plugin.
* `creepy/ui/CreepyUI.py` - Main UI file.
* `creepy/utilities/GeneralUtilities.py` - General utilities.
Loading

0 comments on commit a232d52

Please sign in to comment.