We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More than just GET should be supported.
Maybe user can specify list of curl commands to run ?
POC | GTFO
package main import ( "fmt" "os/exec" "strings" ) func main () { cmd := "curl" args := "-X GET -I -H Content-Type: application/json https://google.com" out, err := exec.Command(cmd, strings.Split(args, " ")...).Output() if err != nil { fmt.Printf("%s", err) } fmt.Println("Cmd executed successfully") output := string(out[:]) fmt.Println(output) }
The text was updated successfully, but these errors were encountered:
User could supply these in a seperate file and then parse them into various go routines and execute them. idk
Sorry, something went wrong.
No branches or pull requests
More than just GET should be supported.
Maybe user can specify list of curl commands to run ?
POC | GTFO
The text was updated successfully, but these errors were encountered: