Projects STRLCPY kitsec-core Commits 0b1b1231
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    README.md
    skipped 31 lines
    32 32   
    33 33  ### 📦 Installation
    34 34   
     35 + 
     36 + 
     37 +<details>
     38 + <summary>Install Docker</summary>
     39 + 
    35 40  Install docker-compose and docker on your system:
    36 41   
    37 42  ````
    skipped 6 lines
    44 49  $ brew install docker-compose docker
    45 50  ````
    46 51   
     52 +</details>
     53 + 
     54 +<details>
     55 + <summary>Run using Docker </summary>
     56 + 
     57 + 
    47 58  To build the docker image run:
    48 59   
    49 60  ````
    skipped 6 lines
    56 67  docker run -it kitsec python src/kitsec.py <command> <options>
    57 68  ````
    58 69   
     70 +</details>
     71 + 
    59 72  <details>
     73 + <summary>Run using Python </summary>
     74 + 
     75 +Install dependencies:
     76 +
     77 +````
     78 +pip install -r requirements.txt
     79 +````
     80 + 
     81 + 
     82 +Install go dependencies:
     83 + 
     84 +````
     85 +python kitsec.py deps
     86 +````
     87 + 
     88 +Run kitsec:
     89 + 
     90 +````
     91 +python kitsec.py <command> <options>
     92 +````
     93 + 
     94 + 
     95 +</details>
     96 + 
     97 +<details>
     98 + 
    60 99   <summary>tips</summary>
    61 100  
    62 101  ``````
    skipped 395 lines
  • ■ ■ ■ ■ ■ ■
    src/dependencies.py
    skipped 7 lines
    8 8   subprocess.run(['go', 'install', '-v', 'github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest'])
    9 9  
    10 10   # Install assetfinder
    11  - subprocess.run(['go', 'install', 'github.com/tomnomnom/assetfinder@latest'])
     11 +# subprocess.run(['go', 'install', 'github.com/tomnomnom/assetfinder@latest'])
    12 12  
    13 13   # Install waybackurls
    14  - subprocess.run(['go', 'install', 'github.com/tomnomnom/waybackurls@latest'])
     14 +# subprocess.run(['go', 'install', 'github.com/tomnomnom/waybackurls@latest'])
    15 15  
    16 16   # Install Amass
    17 17   subprocess.run(['go', 'install', '-v', 'github.com/OWASP/Amass/v3/...@master'])
Please wait...
Page is in error, reload to recover