-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from cisagov/29-resolve-executable-file-lint-i…
…ssues Fix lint issues related to executables/shell files.
- Loading branch information
Showing
25 changed files
with
60 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd /app/pe-reports | ||
cd /app/pe-reports || return | ||
|
||
pe-source cybersixgill --cybersix-methods=alerts --soc_med_included | ||
pe-source cybersixgill --cybersix-methods=alerts --soc_med_included |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd /app/pe-reports | ||
cd /app/pe-reports || return | ||
|
||
pe-source cybersixgill --cybersix-methods=credentials --soc_med_included | ||
pe-source cybersixgill --cybersix-methods=credentials --soc_med_included |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd /app/pe-reports | ||
cd /app/pe-reports || return | ||
|
||
pe-source dnsmonitor | ||
pe-source dnsmonitor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd /app/pe-reports/src/adhoc | ||
cd /app/pe-reports/src/adhoc || return | ||
|
||
python3 run_dnstwist.py | ||
python3 run_dnstwist.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd /app/pe-reports/src/adhoc | ||
cd /app/pe-reports/src/adhoc || return | ||
|
||
python3 hibp_latest.py | ||
python3 hibp_latest.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd /app/pe-reports | ||
cd /app/pe-reports || return | ||
|
||
pe-source intelx | ||
pe-source intelx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd /app/pe-reports | ||
cd /app/pe-reports || return | ||
|
||
pe-source cybersixgill --cybersix-methods=mentions --soc_med_included | ||
pe-source cybersixgill --cybersix-methods=mentions --soc_med_included |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd /app/pe-reports | ||
cd /app/pe-reports || return | ||
|
||
pe-source shodan --soc_med_included | ||
pe-source shodan --soc_med_included |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd /app/pe-reports | ||
cd /app/pe-reports || return | ||
|
||
pe-source cybersixgill --cybersix-methods=topCVEs --soc_med_included | ||
pe-source cybersixgill --cybersix-methods=topCVEs --soc_med_included |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ echo "Starting Shodan" | |
|
||
pe-source shodan --orgs=DHS --soc_med_included | ||
|
||
echo "Done" | ||
echo "Done" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/bin/bash | ||
|
||
docker-compose down --volumes --rmi all | ||
cd backend && npm run build-worker && cd .. && npm start | ||
cd backend && npm run syncdb && npm run syncdb -- -d populate | ||
cd backend && npm run syncdb && npm run syncdb -- -d populate |
Empty file modified
0
frontend/src/context/SearchProvider/applyDisjunctiveFaceting.js
100755 → 100644
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#!/bin/bash | ||
|
||
sudo mkdir /tmp/ssm | ||
cd /tmp/ssm | ||
cd /tmp/ssm || return | ||
wget https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/debian_amd64/amazon-ssm-agent.deb | ||
sudo dpkg -i amazon-ssm-agent.deb | ||
sudo systemctl enable amazon-ssm-agent | ||
rm amazon-ssm-agent.deb | ||
rm amazon-ssm-agent.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
docker-compose up -d --build | ||
#!/bin/bash | ||
|
||
docker-compose up -d --build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
#!/bin/bash | ||
|
||
# Fixes the trusted_hosts issue to allow Matomo to run on a custom port locally, as | ||
# a workaround for https://github.com/matomo-org/matomo/issues/9549. | ||
# Run this after initially setting up Matomo through the UI. | ||
docker-compose exec matomo sed -i 's/"localhost"/"localhost:3000"/g' /var/www/html/config/config.ini.php | ||
docker-compose exec matomo sed -i 's/"localhost"/"localhost:3000"/g' /var/www/html/config/config.ini.php |