This file contains hidden or 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
| Capturing Plugins | |
| site:"site.com" +inurl:"revslider" |
This file contains hidden or 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
| #!/bin/bash | |
| tail -n0 -F "$1" | while read LINE; do | |
| (echo "$LINE" | grep -e "$3") && curl -X POST --silent --data-urlencode \ | |
| "payload={\"text\": \"$(echo $LINE | sed "s/\"/'/g")\"}" "$2"; | |
| done | |
| ## Example usage ./logIPAddress.sh "<logfile>" "https://hooks.slack.com/services/..."; |
This file contains hidden or 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
| DECLARE | |
| l_request_result CLOB; | |
| l_anug_total_votes VARCHAR2(25); | |
| l_apnu_total_votes VARCHAR2(25); | |
| l_cg_total_votes VARCHAR2(25); | |
| l_ljp_total_votes VARCHAR2(25); | |
| l_ppp_total_votes VARCHAR2(25); | |
| l_prp_total_votes VARCHAR2(25); | |
| l_tci_total_votes VARCHAR2(25); | |
| l_tnm_total_votes VARCHAR2(25); |