Skip to content

Commit af2c05b

Browse files
committed
Correct module name
1 parent f1ac617 commit af2c05b

File tree

5 files changed

+13
-15
lines changed

5 files changed

+13
-15
lines changed

api/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from database.db import search_logs
4040
from database.db import logs_to_report_html
4141
from config import nettacker_global_config
42-
from core.scan_targers import start_scan_processes
42+
from core.scan_targets import start_scan_processes
4343
from core.args_loader import check_all_required
4444

4545
app = Flask(

core/parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44

5-
from core.scan_targers import start_scan_processes
5+
from core.scan_targets import start_scan_processes
66
from core.alert import info
77
from core.alert import write
88
from core.alert import messages

core/readme.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@ OWASP Nettacker core functions
33

44
OWASP Nettacker core functions are stored in here.
55

6-
* `die.py` exit functions
7-
* `time.py` time functions
86
* `alert.py` user alerts and printing functions
97
* `args_loader.py` ARGV commands and apply rules
10-
* `attack.py` start new attacks and multi-processing managements
11-
* `color.py` color founds for windows and linux/mac.
8+
* `color.py` color founds for windows and linux/mac
129
* `compatible.py` compatibility functions
13-
* `config.py` user configs (could be modify by user)
14-
* `config_builder.py` core static configs (same as user configs but should not be change by users)
15-
* `get_input.py` get inputs from users functions
10+
* `die.py` exit functions
11+
* `graph.py` graph representation
1612
* `ip.py` IPv4 and IPv6 functions
17-
* `load_modules` load modules, requirements, paths functions
18-
* `log.py` log the scans and generate reports
13+
* `load_modules.py` load modules, requirements, paths functions
14+
* `messages.py` class messages
1915
* `parse.py` parse the ARGV and pass it
20-
* `targets.py` process, calculate and count targets
21-
* `update.py` updates functions of the framework
22-
* `wizard.py` wizard mode for the framework
16+
* `scan_targets.py` start new attacks and multi-processing managements
17+
* `socks_proxy.py` use SOCKS5 proxy
18+
* `targets.py` process, calculate and count targets
19+
* `time.py` time functions
20+
* `utility.py` support functions
File renamed without changes.

core/targets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def expand_targets(options, scan_unique_id):
3232
Returns:
3333
a generator
3434
"""
35-
from core.scan_targers import multi_processor
35+
from core.scan_targets import multi_processor
3636
targets = []
3737
for target in options.targets:
3838
if '://' in target:

0 commit comments

Comments
 (0)