Skip to content

Commit 002168e

Browse files
authored
Update README.md
-Clarified usage statements -Added or corrected links
1 parent c98fbef commit 002168e

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

README.md

+15-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# GitTools
66

7-
This repository contains three small python/bash scripts used for the Git research. [Read about it here](http://en.internetwache.org/dont-publicly-expose-git-or-how-we-downloaded-your-websites-sourcecode-an-analysis-of-alexas-1m-28-07-2015/)
7+
This repository contains three small python/bash scripts used for the Git research. [Read about it here](https://en.internetwache.org/dont-publicly-expose-git-or-how-we-downloaded-your-websites-sourcecode-an-analysis-of-alexas-1m-28-07-2015/)
88

99
## Finder
1010

@@ -16,7 +16,17 @@ This python script identifies websites with publicly accessible ```.git``` repos
1616
It checks if the ```.git/HEAD``` file contains ```refs/heads```.
1717

1818
```
19-
./gitfinder.py -h
19+
$./gitfinder.py -h
20+
21+
###########
22+
# Finder is part of https://github.com/internetwache/GitTools
23+
#
24+
# Developed and maintained by @gehaxelt from @internetwache
25+
#
26+
# Use at your own risk. Usage might be illegal in certain circumstances.
27+
# Only for educational purposes!
28+
###########
29+
2030
usage: gitfinder.py [-h] [-i INPUTFILE] [-o OUTPUTFILE] [-t THREADS]
2131
2232
optional arguments:
@@ -38,7 +48,7 @@ The script will output discovered domains in the form of ```[*] Found: DOMAIN```
3848
wget http://s3.amazonaws.com/alexa-static/top-1m.csv.zip
3949
unzip top-1m.csv.zip
4050
sed -i.bak 's/.*,//' top-1m.csv
41-
python3 ./gitfinder.py -i top-1m.csv
51+
./gitfinder.py -i top-1m.csv
4252
```
4353

4454
## Dumper
@@ -48,7 +58,7 @@ This tool can be used to download as much as possible from the found .git reposi
4858
### Usage
4959

5060
```
51-
./gitdumper.sh -h
61+
$ ./gitdumper.sh -h
5262
5363
[*] USAGE: http://target.tld/.git/ dest-dir [--git-dir=otherdir]
5464
--git-dir=otherdir Change the git folder name. Default: .git
@@ -96,4 +106,4 @@ Here's a small demo of the **Dumper** tool:
96106

97107
# License
98108

99-
All tools are licensed using the MIT license. See LICENSE.md
109+
All tools are licensed using the MIT license. See [LICENSE.md](LICENSE.md)

0 commit comments

Comments
 (0)