-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdir-layout.txt
72 lines (72 loc) · 2.37 KB
/
dir-layout.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
project_directory/
│
├── src/
│ ├── windows/
│ │ ├── CT/
│ │ │ ├── Ominis-OSINT/
│ │ │ │ ├── requirements.txt
│ │ │ │ └── ominis.py
│ │ │ │
│ │ │ ├── AliaStorm/
│ │ │ │ ├── requirements.txt
│ │ │ │ └── aliastorm.py
│ │ │ │
│ │ │ ├── ctwindow_1.py
│ │ │ ├── ctwindow_2.py
│ │ │ ├── ctwindow_3.py
│ │ │ ├── ctwindow_4.py
│ │ │ ├── ctwindow_5.py
│ │ │ │
│ │ ├── ottools/
│ │ │ └── {parent-dir-of-installed-git-repos-for-running}
│ │ │
│ │ ├── main_window.py
│ │ ├── main_sidemenu.py
│ │ ├── docs_window.py
│ │ ├── settings_window.py
│ │ ├── documenter.py
│ │ ├── resources_window.py
│ │ ├── ot_window.py
│ │ ├── ct_window.py
│ │ ├── toolbox_window.py
│ │ ├── sub_window1.py {Blackbird}
│ │ ├── sub_window2.py (Holehe}
│ │ ├── pydork_window.py {PyDork}
│ │ ├── getrails_window.py {Getrails}
│ │ ├── underworldquest_window.py {Underworld}
│ │ ├── url_validator.py
│ │ └── __init__.py
│ │
│ ├── core/
│ │ ├── __init__.py
│ │ ├── design_handler.py
│ │ ├── input_handler.py
│ │ ├── settings.py
│ │ └── __init__.py
│ │
│ ├── configs/
│ │ └── bg-config.json
│ │
│ ├── docs/
│ │ └── placeholder
│ │
│ ├── assets/
│ │ ├── backgrounds/
│ │ │ ├── bg-1.png
│ │ │ ├── bg-2.png
│ │ │ ├── bg-3.png
│ │ │ ├── bg-4.png
│ │ │ ├── default.png
│ │ │ └── contacts.png
│ │ └── icons/
│ │ ├── main_icon.png
│ │ ├── side_logo.png
│ │ └── install.png
│ │
│ ├── md/ # Folder containing markdown files
│ │ └── example.md
│ │
│ ├── app.py
│ └── __init__.py
│
└── odinova.py