Skip to content

Commit d5db104

Browse files
fixes
1 parent bca4c7a commit d5db104

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ go.work
2222

2323
# Config files
2424
config.yml
25-
cmd/easyeasm/config.yml
25+
easyeasm/config.yml
2626
EasyEASM.csv
27-
cmd/easyeasm/EasyEASM.csv
27+
easyeasm/EasyEASM.csv
2828
subdomains.txt
29-
cmd/easyeasm/subdomains.txt
29+
easyeasm/subdomains.txt

pkg/passive/httpx/httpx.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
func RunHttpx(domains []string) {
1212
writeTempFile(domains)
13-
cmd := exec.Command("httpx", "-l", "tempHttpx.txt", "-silent", "-csv", "-o", "temp.csv")
13+
cmd := exec.Command("httpx", "-l", "tempHttpx.txt", "-silent", "-td", "-csv", "-o", "temp.csv")
1414
err := cmd.Run()
1515
if err != nil {
1616
panic(err)
@@ -56,7 +56,7 @@ func processCSV() {
5656
}
5757

5858
// Specify the indices of the columns to keep
59-
columnsToKeep := []int{0, 1, 10, 11, 13, 16, 20, 24, 31, 32, 33, 38, 39, 41, 43} // Keeping only the first and third columns (0-indexed)
59+
columnsToKeep := []int{0,1,7,8,10,13,17,20,26,27,28,32,33,35,37} // Keeping only the first and third columns (0-indexed)
6060

6161
// Open the output CSV file
6262
outputFile, err := os.Create("EasyEASM.csv")

0 commit comments

Comments
 (0)