Skip to content

Commit

Permalink
Merge pull request #74 from connellmcg/master
Browse files Browse the repository at this point in the history
Adding a profile to configure Squid on port 2525, so that it can be u…
  • Loading branch information
pry0cc committed Aug 31, 2020
2 parents 6e0fcdf + a18f301 commit 3c153dc
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions profiles/squid/manifest.json
@@ -0,0 +1,17 @@
{
"name":"Squid",
"description":"Squid Proxy for routing Burp through.",
"variables": [],
"commands": [
"sudo apt-get -y install squid",
"sudo sed -i 's/http_port 3128/http_port 2525/g' /etc/squid/squid.conf",
"sudo sed -i 's/http_access deny all/http_access allow all/g' /etc/squid/squid.conf",
"sudo ufw allow 2525",
"sudo systemctl enable squid",
"sudo systemctl restart squid"
],
"remove_commands":[
"sudo apt remove -y squid"
],
"success_message":"echo \"Squid Proxy has been set up on port 2525\""
}

0 comments on commit 3c153dc

Please sign in to comment.