├── README.md ├── ips.txt ├── script.sh └── stats.txt /README.md: -------------------------------------------------------------------------------- 1 | # j4shell_ioc_ips 2 | big dump from known log4j/log4shell malicious ip adresses unique and sorted update once a hour only if changes were made! (CVE-2021-44228) 3 | happy hunting 4 | 5 | ## disclaimer 6 | This script is parsing a lot of Source so this list maybe has a lot of false positives don't block all ips in your firewall! 7 | 8 | 9 | ## ToDo: 10 | - add Whitelist [ONGOING] 11 | - better regex exclude local ip adresses [X] 12 | - add support for domains [] 13 | 14 | 15 | ## sources: 16 | - https://gist.github.com/gnremy/c546c7911d5f876f263309d7161a7217 17 | - https://github.com/Akikazuu/Apache-Log4j-RCE-Attempt 18 | - https://github.com/RedDrip7/Log4Shell_CVE-2021-44228_related_attacks_IOCs 19 | - https://gist.github.com/ycamper/26e021a2b5974049d113738d51e7641d 20 | - https://github.com/Malwar3Ninja/Exploitation-of-Log4j2-CVE-2021-44228/blob/main/Threatview.io-log4j2-IOC-list 21 | - https://raw.githubusercontent.com/Azure/Azure-Sentinel/master/Sample%20Data/Feeds/Log4j_IOC_List.csv 22 | - https://github.com/CronUp/Malware-IOCs/blob/main/2021-12-11_Log4Shell_Botnets 23 | - https://gist.github.com/blotus/f87ed46718bfdc634c9081110d243166 24 | - https://tweetfeed.live/search.html 25 | - https://raw.githubusercontent.com/CriticalPathSecurity/Public-Intelligence-Feeds/master/log4j.txt 26 | - https://raw.githubusercontent.com/CriticalPathSecurity/Zeek-Intelligence-Feeds/master/log4j_ip.intel 27 | - https://raw.githubusercontent.com/CriticalPathSecurity/Public-Intelligence-Feeds/master/log4j.txt 28 | - https://urlhaus.abuse.ch/browse/tag/log4j/ 29 | - https://threatfox.abuse.ch/browse/tag/CVE-2021-44228/ ( and log4j) 30 | - https://github.com/threatmonit/Log4j-IOCs 31 | - https://raw.githubusercontent.com/eromang/researches/main/CVE-2021-44228/README.md 32 | - https://github.com/Humoud/log4j_payloads 33 | - https://gist.github.com/yt0ng/8a87f4328c8c6cde327406ef11e68726 34 | - https://github.com/LogRhythm-Labs/log4Shell 35 | - https://github.com/guardicode/CVE-2021-44228_IoCs 36 | - https://github.com/bengisugun/Log4j-IOC 37 | - https://github.com/shnoogie/log4j_ioc 38 | - https://github.com/vul-log/log4j_iocs 39 | - https://github.com/threatmonit/Log4j-IOCs 40 | - https://github.com/aojald/LOG4J_IOC 41 | - https://github.com/josephinetanadi/log4j-ioc-merge 42 | - https://github.com/russelr46/IOC_log4j_apache 43 | - https://github.com/prodigyak/Log4j-Wireshark-IOC-filter 44 | - https://github.com/valtix-security/Log4j-Indicators-of-Compromise 45 | - https://github.com/curated-intel/Log4Shell-IOCs 46 | - https://github.com/Sh0ckFR/log4j-CVE-2021-44228-Public-IoCs 47 | -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | DIR=/home/pi/scripts/j4shell_ioc_ips 3 | SIZEBEGIN=$(du -b $DIR/ips.txt | cut -f1) 4 | # clone repos into dir 5 | repos=("https://gist.github.com/gnremy/c546c7911d5f876f263309d7161a7217" "https://github.com/Akikazuu/Apache-Log4j-RCE-Attempt" "https://github.com/RedDrip7/Log4Shell_CVE-2021-44228_related_attacks_IOCs" "https://gist.github.com/ycamper/26e021a2b5974049d113738d51e7641d" "https://github.com/Malwar3Ninja/Exploitation-of-Log4j2-CVE-2021-44228/blob/main/Threatview.io-log4j2-IOC-list" "https://raw.githubusercontent.com/Azure/Azure-Sentinel/master/Sample%20Data/Feeds/Log4j_IOC_List.csv" "https://github.com/CronUp/Malware-IOCs/blob/main/2021-12-11_Log4Shell_Botnets" "https://gist.github.com/blotus/f87ed46718bfdc634c9081110d243166" "https://github.com/threatmonit/Log4j-IOCs" "https://github.com/Humoud/log4j_payloads" "https://gist.github.com/yt0ng/8a87f4328c8c6cde327406ef11e68726" "https://github.com/LogRhythm-Labs/log4Shell" "https://github.com/bengisugun/Log4j-IOC" "https://github.com/guardicode/CVE-2021-44228_IoCs" "https://github.com/shnoogie/log4j_ioc" "https://github.com/vul-log/log4j_iocs" "https://github.com/threatmonit/Log4j-IOCs" "https://github.com/aojald/LOG4J_IOC" "https://github.com/josephinetanadi/log4j-ioc-merge" "https://github.com/russelr46/IOC_log4j_apache" "https://github.com/prodigyak/Log4j-Wireshark-IOC-filter" "https://github.com/valtix-security/Log4j-Indicators-of-Compromise" "https://github.com/curated-intel/Log4Shell-IOCs" "https://github.com/Sh0ckFR/log4j-CVE-2021-44228-Public-IoCs") 6 | # add new downloads at the end!! 7 | downloads=("https://threatfox.abuse.ch/export/csv/full/" "https://raw.githubusercontent.com/0xDanielLopez/TweetFeed/master/week.csv" "https://urlhaus.abuse.ch/downloads/csv/" "https://raw.githubusercontent.com/CronUp/Malware-IOCs/main/2021-12-11_Log4Shell_Botnets" "https://raw.githubusercontent.com/CriticalPathSecurity/Public-Intelligence-Feeds/master/log4j.txt" "https://raw.githubusercontent.com/CriticalPathSecurity/Zeek-Intelligence-Feeds/master/log4j_ip.intel" "https://raw.githubusercontent.com/CriticalPathSecurity/Public-Intelligence-Feeds/master/log4j.txt" "https://raw.githubusercontent.com/Azure/Azure-Sentinel/master/Sample%20Data/Feeds/Log4j_IOC_List.csv" "https://raw.githubusercontent.com/eromang/researches/main/CVE-2021-44228/README.md") 8 | 9 | if [ -d "./repos" ]; then 10 | find ./repos -type d -mindepth 1 -maxdepth 1 -exec git --git-dir={}/.git --work-tree=$PWD/{} pull \; 11 | else 12 | mkdir $DIR/repos 13 | mkdir $DIR/dl 14 | for str in ${repos[@]}; do 15 | git -C ./repos clone $str 16 | done 17 | fi 18 | echo "Downloading all files...." 19 | i=0 20 | for str in ${downloads[@]}; do 21 | i=$((i+1)) 22 | curl $str --output $DIR/dl/$i 23 | done 24 | 25 | #extract file from tweetfeed 26 | echo "extract files from tweetfeed...." 27 | cat $DIR/dl/2 | grep -i "log4j\|log4shell" | grep -i "ip" | awk -F ',' '{print $4}' > tweetfeedfiltered 28 | rm $DIR/dl/2 29 | 30 | # extract csv from urlhaus 31 | echo "extract files from urlhaus...." 32 | unzip -o $DIR/dl/3 -d $DIR/dl/ 33 | cat $DIR/dl/csv.txt | grep -i "log4j" | awk -F ',' '{print $3}' > urlhaus #grep for tags 34 | rm $DIR/dl/3 35 | rm $DIR/dl/csv.txt 36 | 37 | #extract files from threatfox 38 | echo "extract files from threatfox...." 39 | unzip -o $DIR/dl/1 -d $DIR/dl/ 40 | cat $DIR/dl/full.csv | grep -i "log4j\|CVE-2021-44228" | awk -F ',' '{print $3}' > threatfox #grep for tags 41 | 42 | rm $DIR/dl/1 43 | rm $DIR/dl/full.csv 44 | 45 | 46 | echo "backup from old ips.txt...." 47 | 48 | cp $DIR/ips.txt ../ipsbak.txt 49 | 50 | echo "grep all IPs...." 51 | #filter for valid IPs in repo dir 52 | grep -hiRaE --exclude="README.md" --exclude="ips.txt" --exclude="script.sh" --exclude="stats.txt" \ 53 | -o "^(1?[0-9][0-9]?|2([0-4][0-9]|5[0-5]))(\.(1?[0-9][0-9]?|2([0-4][0-9]|5[0-5]))){3}$" | \ 54 | # Filter out RFC1918 IPs 55 | grep -Pv "(^192\.168(\.([0-9]|1?[0-9][0-9]|2([0-4][0-9]|5[0-5]))){2}$)|(^172\.(1[6-9]|2[0-9]|3[0-1])(\.(1?[0-9][0-9]?|2([0-4][0-9]|5[0-5]))){2}$)|(^10(\.(1?[0-9][0-9]?|2([0-4][0-9]|5[0-5]))){3}$)" | \ 56 | #Filter out any entrie starting with 0 or 255 the first octet 57 | grep -Pv "^(0+|255)\." | \ 58 | sort -u > $DIR/ips.txt 59 | 60 | 61 | 62 | 63 | SIZEND=$(du -b $DIR/ips.txt | cut -f1) 64 | # check if new ips.. 65 | if [[ $SIZEND != $SIZBEGIN ]]; then 66 | echo "update list!!" 67 | TIMEDATE=$(date +"%D %T") 68 | LINECOUNT=$(wc -l ips.txt) 69 | OUTPUT="${TIMEDATE} : ${LINECOUNT}" 70 | echo "${OUTPUT} " >> $DIR/stats.txt 71 | 72 | git pull 73 | 74 | git add $DIR/stats.txt 75 | git add $DIR/ips.txt 76 | git add $DIR/script.sh 77 | git commit -m "hourly update" 78 | git push 79 | fi 80 | 81 | -------------------------------------------------------------------------------- /stats.txt: -------------------------------------------------------------------------------- 1 | 12/13/21 19:03:37 : 2719 ips.txt 2 | 12/13/21 19:10:05 : 2719 ips.txt 3 | 12/13/21 19:20:04 : 2719 ips.txt 4 | 12/13/21 19:30:06 : 2719 ips.txt 5 | 12/13/21 19:39:01 : 3855 ips.txt 6 | 12/13/21 22:14:35 : 3884 ips.txt 7 | 12/13/21 22:16:50 : 3884 ips.txt 8 | 12/13/21 22:35:16 : 3883 ips.txt 9 | 12/13/21 22:43:03 : 13426 ips.txt 10 | 12/13/21 22:44:01 : 3883 ips.txt 11 | 12/13/21 22:45:12 : 3883 ips.txt 12 | 12/13/21 22:57:00 : 23024 ips.txt 13 | 12/13/21 22:59:19 : 23024 ips.txt 14 | 12/13/21 22:59:56 : 23024 ips.txt 15 | 12/13/21 23:00:23 : 23024 ips.txt 16 | 12/13/21 23:03:42 : 23034 ips.txt 17 | 12/13/21 23:06:46 : 23034 ips.txt 18 | 12/13/21 23:11:49 : 23034 ips.txt 19 | 12/13/21 23:13:31 : 23034 ips.txt 20 | 12/13/21 23:27:03 : 23034 ips.txt 21 | 12/14/21 00:00:21 : 23034 ips.txt 22 | 12/14/21 01:00:24 : 23073 ips.txt 23 | 12/14/21 02:00:20 : 23078 ips.txt 24 | 12/14/21 03:00:21 : 23079 ips.txt 25 | 12/14/21 04:00:22 : 23079 ips.txt 26 | 12/14/21 05:00:21 : 23079 ips.txt 27 | 12/14/21 06:00:20 : 23079 ips.txt 28 | 12/14/21 07:00:20 : 23107 ips.txt 29 | 12/14/21 08:00:23 : 23108 ips.txt 30 | 12/14/21 09:00:22 : 23112 ips.txt 31 | 12/14/21 10:00:23 : 23112 ips.txt 32 | 12/14/21 11:00:22 : 23112 ips.txt 33 | 12/14/21 12:00:23 : 23191 ips.txt 34 | 12/14/21 13:00:24 : 23218 ips.txt 35 | 12/14/21 14:00:22 : 23218 ips.txt 36 | 12/14/21 15:00:24 : 23218 ips.txt 37 | 12/14/21 16:00:24 : 23156 ips.txt 38 | 12/14/21 17:00:24 : 23273 ips.txt 39 | 12/14/21 18:00:25 : 23276 ips.txt 40 | 12/14/21 18:19:41 : 23276 ips.txt 41 | 12/14/21 19:00:23 : 23298 ips.txt 42 | 12/14/21 20:00:22 : 23298 ips.txt 43 | 12/14/21 21:00:23 : 23298 ips.txt 44 | 12/14/21 22:00:22 : 23298 ips.txt 45 | 12/14/21 23:00:22 : 23306 ips.txt 46 | 12/15/21 00:00:22 : 23314 ips.txt 47 | 12/15/21 01:00:23 : 23344 ips.txt 48 | 12/15/21 01:41:12 : 23348 ips.txt 49 | 12/15/21 02:00:22 : 23348 ips.txt 50 | 12/15/21 03:00:27 : 23348 ips.txt 51 | 12/15/21 04:00:29 : 23348 ips.txt 52 | 12/15/21 05:00:25 : 23348 ips.txt 53 | 12/15/21 06:00:23 : 23418 ips.txt 54 | 12/15/21 07:00:25 : 23418 ips.txt 55 | 12/15/21 08:00:21 : 23418 ips.txt 56 | 12/15/21 09:00:23 : 23418 ips.txt 57 | 12/15/21 10:00:23 : 23418 ips.txt 58 | 12/15/21 11:00:22 : 23418 ips.txt 59 | 12/15/21 12:00:23 : 23425 ips.txt 60 | 12/15/21 13:00:23 : 23425 ips.txt 61 | 12/15/21 14:00:19 : 23425 ips.txt 62 | 12/15/21 15:00:22 : 23489 ips.txt 63 | 12/15/21 16:00:21 : 23490 ips.txt 64 | 12/15/21 17:00:20 : 23490 ips.txt 65 | 12/15/21 18:00:21 : 23603 ips.txt 66 | 12/15/21 19:00:23 : 23596 ips.txt 67 | 12/15/21 19:37:26 : 0 ips.txt 68 | 12/15/21 19:41:21 : 0 ips.txt 69 | 12/15/21 19:45:20 : 23596 ips.txt 70 | 12/15/21 19:48:53 : 23596 ips.txt 71 | 12/15/21 20:00:20 : 23596 ips.txt 72 | 12/15/21 20:25:17 : 23596 ips.txt 73 | 12/15/21 20:31:56 : 23594 ips.txt 74 | 12/15/21 21:00:21 : 23594 ips.txt 75 | 12/15/21 22:00:21 : 23632 ips.txt 76 | 12/15/21 23:00:21 : 23632 ips.txt 77 | 12/16/21 00:00:22 : 23645 ips.txt 78 | 12/16/21 01:00:21 : 23645 ips.txt 79 | 12/16/21 02:00:20 : 23650 ips.txt 80 | 12/16/21 03:00:18 : 23652 ips.txt 81 | 12/16/21 04:00:19 : 23652 ips.txt 82 | 12/16/21 05:00:19 : 23654 ips.txt 83 | 12/16/21 06:00:19 : 23654 ips.txt 84 | 12/16/21 07:00:20 : 23654 ips.txt 85 | 12/16/21 08:00:18 : 23654 ips.txt 86 | 12/16/21 09:00:21 : 23654 ips.txt 87 | 12/16/21 10:00:21 : 23654 ips.txt 88 | 12/16/21 11:00:20 : 23682 ips.txt 89 | 12/16/21 12:00:21 : 23683 ips.txt 90 | 12/16/21 13:00:21 : 23683 ips.txt 91 | 12/16/21 13:28:37 : 23687 ips.txt 92 | 12/16/21 14:00:28 : 23687 ips.txt 93 | 12/16/21 15:00:21 : 23687 ips.txt 94 | 12/16/21 16:00:20 : 23687 ips.txt 95 | 12/16/21 17:00:20 : 23690 ips.txt 96 | 12/16/21 18:00:20 : 23725 ips.txt 97 | 12/16/21 19:00:18 : 23727 ips.txt 98 | 12/16/21 20:00:21 : 23727 ips.txt 99 | 12/16/21 21:00:20 : 23794 ips.txt 100 | 12/16/21 22:00:21 : 23815 ips.txt 101 | 12/16/21 23:00:21 : 23815 ips.txt 102 | 12/17/21 00:00:24 : 23859 ips.txt 103 | 12/17/21 01:00:20 : 23861 ips.txt 104 | 12/17/21 02:00:19 : 23868 ips.txt 105 | 12/17/21 03:00:20 : 23868 ips.txt 106 | 12/17/21 04:00:19 : 23868 ips.txt 107 | 12/17/21 05:00:19 : 23868 ips.txt 108 | 12/17/21 06:00:19 : 23868 ips.txt 109 | 12/17/21 07:00:18 : 23869 ips.txt 110 | 12/17/21 08:00:17 : 23869 ips.txt 111 | 12/17/21 09:00:20 : 23870 ips.txt 112 | 12/17/21 10:00:18 : 24053 ips.txt 113 | 12/17/21 11:00:20 : 24076 ips.txt 114 | 12/17/21 11:27:08 : 24076 ips.txt 115 | 12/17/21 12:00:19 : 24076 ips.txt 116 | 12/17/21 13:00:17 : 24076 ips.txt 117 | 12/17/21 14:00:15 : 24076 ips.txt 118 | 12/17/21 15:00:17 : 24076 ips.txt 119 | 12/17/21 16:00:19 : 24076 ips.txt 120 | 12/17/21 17:00:17 : 24076 ips.txt 121 | 12/17/21 18:00:20 : 24076 ips.txt 122 | 12/17/21 19:00:18 : 24076 ips.txt 123 | 12/17/21 20:00:17 : 24076 ips.txt 124 | 12/17/21 21:00:16 : 24076 ips.txt 125 | 12/17/21 22:00:16 : 24076 ips.txt 126 | 12/17/21 23:00:18 : 24076 ips.txt 127 | 12/18/21 00:00:17 : 24076 ips.txt 128 | 12/18/21 01:00:21 : 24076 ips.txt 129 | 12/18/21 02:00:19 : 24076 ips.txt 130 | 12/18/21 03:00:16 : 24076 ips.txt 131 | 12/18/21 04:00:16 : 24076 ips.txt 132 | 12/18/21 05:00:15 : 24076 ips.txt 133 | 12/18/21 06:00:16 : 24076 ips.txt 134 | 12/18/21 07:00:16 : 24076 ips.txt 135 | 12/18/21 08:00:17 : 24076 ips.txt 136 | 12/18/21 09:00:16 : 24076 ips.txt 137 | 12/18/21 10:00:15 : 24076 ips.txt 138 | 12/18/21 11:00:16 : 24076 ips.txt 139 | 12/18/21 12:00:16 : 24076 ips.txt 140 | 12/18/21 13:00:17 : 24076 ips.txt 141 | 12/18/21 14:00:15 : 24076 ips.txt 142 | 12/18/21 15:00:17 : 24076 ips.txt 143 | 12/18/21 16:00:15 : 24076 ips.txt 144 | 12/18/21 17:00:16 : 24076 ips.txt 145 | 12/18/21 18:00:16 : 24076 ips.txt 146 | 12/18/21 19:00:18 : 24076 ips.txt 147 | 12/18/21 20:00:14 : 24076 ips.txt 148 | 12/18/21 21:00:18 : 24076 ips.txt 149 | 12/18/21 22:00:15 : 24076 ips.txt 150 | 12/18/21 23:00:15 : 24076 ips.txt 151 | 12/19/21 00:00:16 : 24076 ips.txt 152 | 12/19/21 01:00:16 : 24076 ips.txt 153 | 12/19/21 02:00:14 : 24076 ips.txt 154 | 12/19/21 03:00:16 : 24076 ips.txt 155 | 12/19/21 04:00:14 : 24076 ips.txt 156 | 12/19/21 05:00:16 : 24076 ips.txt 157 | 12/19/21 06:00:16 : 24076 ips.txt 158 | 12/19/21 07:00:16 : 24076 ips.txt 159 | 12/19/21 08:00:16 : 24076 ips.txt 160 | 12/19/21 09:00:15 : 24076 ips.txt 161 | 12/19/21 10:00:14 : 24076 ips.txt 162 | 12/19/21 11:00:15 : 24076 ips.txt 163 | 12/19/21 12:00:14 : 24076 ips.txt 164 | 12/19/21 13:00:15 : 24076 ips.txt 165 | 12/19/21 14:00:17 : 24076 ips.txt 166 | 12/19/21 15:00:18 : 24076 ips.txt 167 | 12/19/21 16:00:15 : 24076 ips.txt 168 | 12/19/21 17:00:16 : 24076 ips.txt 169 | 12/19/21 18:00:17 : 24076 ips.txt 170 | 12/19/21 19:00:16 : 24076 ips.txt 171 | 12/19/21 20:00:16 : 24076 ips.txt 172 | 12/19/21 21:00:17 : 24076 ips.txt 173 | 12/19/21 22:00:17 : 24076 ips.txt 174 | 12/19/21 23:00:20 : 24076 ips.txt 175 | 12/20/21 00:00:18 : 24076 ips.txt 176 | 12/20/21 01:00:18 : 24076 ips.txt 177 | 12/20/21 02:00:15 : 24076 ips.txt 178 | 12/20/21 03:00:17 : 24076 ips.txt 179 | 12/20/21 04:00:16 : 24076 ips.txt 180 | 12/20/21 05:00:19 : 24076 ips.txt 181 | 12/20/21 06:00:18 : 24076 ips.txt 182 | 12/20/21 07:00:19 : 24076 ips.txt 183 | 12/20/21 08:00:16 : 24076 ips.txt 184 | 12/20/21 09:00:17 : 24076 ips.txt 185 | 12/20/21 10:00:18 : 24076 ips.txt 186 | 12/20/21 11:00:17 : 24076 ips.txt 187 | 12/20/21 12:00:17 : 24076 ips.txt 188 | 12/20/21 13:00:18 : 24076 ips.txt 189 | 12/20/21 14:00:15 : 24076 ips.txt 190 | 12/20/21 15:00:20 : 24076 ips.txt 191 | 12/20/21 16:00:18 : 24076 ips.txt 192 | 12/20/21 17:00:25 : 24076 ips.txt 193 | 12/20/21 18:00:18 : 24076 ips.txt 194 | 12/20/21 19:00:16 : 24076 ips.txt 195 | 12/20/21 20:00:19 : 24076 ips.txt 196 | 12/20/21 21:00:17 : 24076 ips.txt 197 | 12/20/21 22:00:18 : 24076 ips.txt 198 | 12/20/21 23:00:19 : 24076 ips.txt 199 | 12/21/21 00:00:17 : 24076 ips.txt 200 | 12/21/21 01:00:17 : 24076 ips.txt 201 | 12/21/21 02:00:17 : 24076 ips.txt 202 | 12/21/21 03:00:18 : 24076 ips.txt 203 | 12/21/21 04:00:17 : 24076 ips.txt 204 | 12/21/21 05:00:16 : 24076 ips.txt 205 | 12/21/21 06:00:17 : 24076 ips.txt 206 | 12/21/21 07:00:18 : 24076 ips.txt 207 | 12/21/21 08:00:18 : 24076 ips.txt 208 | 12/21/21 09:00:18 : 24076 ips.txt 209 | 12/21/21 10:00:18 : 24076 ips.txt 210 | 12/21/21 11:00:17 : 24076 ips.txt 211 | 12/21/21 12:00:17 : 24076 ips.txt 212 | 12/21/21 13:00:19 : 24076 ips.txt 213 | 12/21/21 14:00:16 : 24076 ips.txt 214 | 12/21/21 15:00:26 : 24076 ips.txt 215 | 12/21/21 16:00:17 : 24076 ips.txt 216 | 12/21/21 17:00:18 : 24076 ips.txt 217 | 12/21/21 18:00:21 : 24076 ips.txt 218 | 12/21/21 19:00:19 : 24076 ips.txt 219 | 12/21/21 20:00:17 : 24076 ips.txt 220 | 12/21/21 21:00:19 : 24076 ips.txt 221 | 12/21/21 22:00:18 : 24076 ips.txt 222 | 12/21/21 23:00:18 : 24076 ips.txt 223 | 12/22/21 00:00:16 : 24076 ips.txt 224 | 12/22/21 01:00:17 : 24076 ips.txt 225 | 12/22/21 02:00:21 : 24076 ips.txt 226 | 12/22/21 03:00:16 : 24076 ips.txt 227 | 12/22/21 04:00:16 : 24076 ips.txt 228 | 12/22/21 05:00:19 : 24076 ips.txt 229 | 12/22/21 06:00:19 : 24076 ips.txt 230 | 12/22/21 07:00:19 : 24076 ips.txt 231 | 12/22/21 08:00:21 : 24076 ips.txt 232 | 12/22/21 09:00:20 : 24076 ips.txt 233 | 12/22/21 10:00:18 : 24076 ips.txt 234 | 12/22/21 11:00:19 : 24076 ips.txt 235 | 12/22/21 12:00:19 : 24076 ips.txt 236 | 12/22/21 13:00:19 : 24076 ips.txt 237 | 12/22/21 13:40:28 : 24076 ips.txt 238 | 12/22/21 14:00:17 : 24076 ips.txt 239 | 12/22/21 15:00:21 : 24363 ips.txt 240 | 12/22/21 16:00:24 : 24361 ips.txt 241 | 12/22/21 17:00:22 : 24362 ips.txt 242 | 12/22/21 18:00:22 : 24363 ips.txt 243 | 12/22/21 18:54:55 : 24364 ips.txt 244 | 12/22/21 19:00:19 : 24364 ips.txt 245 | 12/22/21 20:00:22 : 24364 ips.txt 246 | 12/22/21 21:00:19 : 24439 ips.txt 247 | 12/22/21 22:00:19 : 24439 ips.txt 248 | 12/22/21 23:00:23 : 24439 ips.txt 249 | 12/23/21 00:00:18 : 24439 ips.txt 250 | 12/23/21 01:00:19 : 24439 ips.txt 251 | 12/23/21 02:00:18 : 24439 ips.txt 252 | 12/23/21 03:00:17 : 24440 ips.txt 253 | 12/23/21 04:00:19 : 24440 ips.txt 254 | 12/23/21 05:00:18 : 24440 ips.txt 255 | 12/23/21 06:00:18 : 24440 ips.txt 256 | 12/23/21 07:00:20 : 24441 ips.txt 257 | 12/23/21 08:00:25 : 24441 ips.txt 258 | 12/23/21 09:00:19 : 24442 ips.txt 259 | 12/23/21 10:00:20 : 24442 ips.txt 260 | 12/23/21 11:00:20 : 24442 ips.txt 261 | 12/23/21 12:00:20 : 24442 ips.txt 262 | 12/23/21 13:00:23 : 24442 ips.txt 263 | 12/23/21 14:00:21 : 24442 ips.txt 264 | 12/23/21 15:00:21 : 24442 ips.txt 265 | 12/23/21 16:00:21 : 24442 ips.txt 266 | 12/23/21 17:00:23 : 24442 ips.txt 267 | 12/23/21 18:00:22 : 24442 ips.txt 268 | 12/23/21 19:00:23 : 24442 ips.txt 269 | 12/23/21 20:00:18 : 24442 ips.txt 270 | 12/23/21 21:00:19 : 24442 ips.txt 271 | 12/23/21 22:00:19 : 24442 ips.txt 272 | 12/23/21 23:00:24 : 24442 ips.txt 273 | 12/24/21 00:00:21 : 24442 ips.txt 274 | 12/24/21 01:00:20 : 24442 ips.txt 275 | 12/24/21 02:00:18 : 24442 ips.txt 276 | 12/24/21 03:00:22 : 24442 ips.txt 277 | 12/24/21 04:00:22 : 24442 ips.txt 278 | 12/24/21 05:00:17 : 24442 ips.txt 279 | 12/24/21 06:00:18 : 24442 ips.txt 280 | 12/24/21 07:00:21 : 24442 ips.txt 281 | 12/24/21 08:00:18 : 24442 ips.txt 282 | 12/24/21 09:00:23 : 24442 ips.txt 283 | 12/24/21 09:47:54 : 24908 ips.txt 284 | 12/24/21 10:00:25 : 24908 ips.txt 285 | 12/24/21 11:00:25 : 24908 ips.txt 286 | 12/24/21 12:00:25 : 24908 ips.txt 287 | 12/24/21 13:00:26 : 24908 ips.txt 288 | 12/24/21 14:00:26 : 24908 ips.txt 289 | 12/24/21 15:00:36 : 24908 ips.txt 290 | 12/24/21 16:00:35 : 24908 ips.txt 291 | 12/24/21 17:00:26 : 24908 ips.txt 292 | 12/24/21 18:00:26 : 24908 ips.txt 293 | 12/24/21 19:00:27 : 24908 ips.txt 294 | 12/24/21 20:00:23 : 24939 ips.txt 295 | 12/24/21 21:00:22 : 24939 ips.txt 296 | 12/24/21 22:00:22 : 24939 ips.txt 297 | 12/24/21 23:00:22 : 24939 ips.txt 298 | 12/25/21 00:00:21 : 24939 ips.txt 299 | 12/25/21 01:00:23 : 24939 ips.txt 300 | 12/25/21 02:00:22 : 24939 ips.txt 301 | 12/25/21 03:00:28 : 24939 ips.txt 302 | 12/25/21 04:00:21 : 24939 ips.txt 303 | 12/25/21 05:00:22 : 24940 ips.txt 304 | 12/25/21 06:00:23 : 24940 ips.txt 305 | 12/25/21 07:00:22 : 24940 ips.txt 306 | 12/25/21 08:00:24 : 24940 ips.txt 307 | 12/25/21 09:00:24 : 24940 ips.txt 308 | 12/25/21 10:00:36 : 24940 ips.txt 309 | 12/25/21 11:00:21 : 24940 ips.txt 310 | 12/25/21 12:00:23 : 24943 ips.txt 311 | 12/25/21 13:00:25 : 24945 ips.txt 312 | 12/25/21 14:01:21 : 24945 ips.txt 313 | 12/25/21 15:00:24 : 24945 ips.txt 314 | 12/25/21 16:00:25 : 24945 ips.txt 315 | 12/25/21 17:00:27 : 24945 ips.txt 316 | 12/25/21 18:00:22 : 24945 ips.txt 317 | 12/25/21 19:00:25 : 24945 ips.txt 318 | 12/25/21 20:00:21 : 24945 ips.txt 319 | 12/25/21 21:00:25 : 24945 ips.txt 320 | 12/25/21 22:00:22 : 24945 ips.txt 321 | 12/25/21 23:00:20 : 24945 ips.txt 322 | 12/26/21 00:00:22 : 24945 ips.txt 323 | 12/26/21 01:00:25 : 24945 ips.txt 324 | 12/26/21 02:00:23 : 24945 ips.txt 325 | 12/26/21 03:00:25 : 24945 ips.txt 326 | 12/26/21 04:00:22 : 24945 ips.txt 327 | 12/26/21 05:00:23 : 24945 ips.txt 328 | 12/26/21 06:00:24 : 24945 ips.txt 329 | 12/26/21 07:00:23 : 24945 ips.txt 330 | 12/26/21 08:00:22 : 24945 ips.txt 331 | 12/26/21 09:00:27 : 24945 ips.txt 332 | 12/26/21 10:00:28 : 24945 ips.txt 333 | 12/26/21 11:00:28 : 24945 ips.txt 334 | 12/26/21 12:00:23 : 24945 ips.txt 335 | 12/26/21 13:00:21 : 24945 ips.txt 336 | 12/26/21 14:00:25 : 24945 ips.txt 337 | 12/26/21 15:00:26 : 24945 ips.txt 338 | 12/26/21 16:00:26 : 24945 ips.txt 339 | 12/26/21 17:00:22 : 24945 ips.txt 340 | 12/26/21 18:00:21 : 24945 ips.txt 341 | 12/26/21 19:00:23 : 24945 ips.txt 342 | 12/26/21 20:00:24 : 24945 ips.txt 343 | 12/26/21 21:00:23 : 24945 ips.txt 344 | 12/26/21 22:00:23 : 24945 ips.txt 345 | 12/26/21 23:00:21 : 24946 ips.txt 346 | 12/27/21 00:00:21 : 24946 ips.txt 347 | 12/27/21 01:00:23 : 24946 ips.txt 348 | 12/27/21 02:00:22 : 24946 ips.txt 349 | 12/27/21 03:00:22 : 24946 ips.txt 350 | 12/27/21 04:00:22 : 24946 ips.txt 351 | 12/27/21 05:00:21 : 24946 ips.txt 352 | 12/27/21 06:00:24 : 24946 ips.txt 353 | 12/27/21 07:00:22 : 24946 ips.txt 354 | 12/27/21 08:00:23 : 24946 ips.txt 355 | 12/27/21 09:00:27 : 24946 ips.txt 356 | 12/27/21 10:00:30 : 24946 ips.txt 357 | 12/27/21 11:00:22 : 24946 ips.txt 358 | 12/27/21 12:00:21 : 24946 ips.txt 359 | 12/27/21 13:00:26 : 24946 ips.txt 360 | 12/27/21 14:00:26 : 24946 ips.txt 361 | 12/27/21 15:00:26 : 24946 ips.txt 362 | 12/27/21 16:00:26 : 24946 ips.txt 363 | 12/27/21 17:00:23 : 24946 ips.txt 364 | 12/27/21 18:00:25 : 24946 ips.txt 365 | 12/27/21 19:00:27 : 24946 ips.txt 366 | 12/27/21 20:00:26 : 24962 ips.txt 367 | 12/27/21 21:00:28 : 24962 ips.txt 368 | 12/27/21 22:00:28 : 24962 ips.txt 369 | 12/27/21 23:00:30 : 24962 ips.txt 370 | 12/28/21 00:01:26 : 24962 ips.txt 371 | 12/28/21 01:00:33 : 24962 ips.txt 372 | 12/28/21 02:00:28 : 24962 ips.txt 373 | 12/28/21 03:00:24 : 24962 ips.txt 374 | 12/28/21 04:00:26 : 24962 ips.txt 375 | 12/28/21 05:00:23 : 24962 ips.txt 376 | 12/28/21 06:00:27 : 24962 ips.txt 377 | 12/28/21 07:00:30 : 24962 ips.txt 378 | 12/28/21 08:00:26 : 24962 ips.txt 379 | 12/28/21 09:00:25 : 25060 ips.txt 380 | 12/28/21 10:00:24 : 25060 ips.txt 381 | 12/28/21 11:00:23 : 25060 ips.txt 382 | 12/28/21 12:00:23 : 25060 ips.txt 383 | 12/28/21 13:00:22 : 25060 ips.txt 384 | 12/28/21 14:00:41 : 25060 ips.txt 385 | 12/28/21 15:00:24 : 25060 ips.txt 386 | 12/28/21 16:00:23 : 25060 ips.txt 387 | 12/28/21 17:00:23 : 25060 ips.txt 388 | 12/28/21 18:00:22 : 25060 ips.txt 389 | 12/28/21 19:00:24 : 25060 ips.txt 390 | 12/28/21 20:00:25 : 25060 ips.txt 391 | 12/28/21 21:00:23 : 25060 ips.txt 392 | 12/28/21 22:00:23 : 25060 ips.txt 393 | 12/28/21 23:00:25 : 25060 ips.txt 394 | 12/29/21 00:00:26 : 25060 ips.txt 395 | 12/29/21 01:00:27 : 25060 ips.txt 396 | 12/29/21 02:00:27 : 25060 ips.txt 397 | 12/29/21 03:00:26 : 25060 ips.txt 398 | 12/29/21 04:00:26 : 25060 ips.txt 399 | 12/29/21 05:00:22 : 25060 ips.txt 400 | 12/29/21 06:00:29 : 25060 ips.txt 401 | 12/29/21 07:00:25 : 25060 ips.txt 402 | 12/29/21 08:00:22 : 25060 ips.txt 403 | 12/29/21 09:00:29 : 25060 ips.txt 404 | 12/29/21 10:00:25 : 25060 ips.txt 405 | 12/29/21 11:00:28 : 25060 ips.txt 406 | 12/29/21 12:00:27 : 25060 ips.txt 407 | 12/29/21 13:00:24 : 25060 ips.txt 408 | 12/29/21 14:00:24 : 25060 ips.txt 409 | 12/29/21 15:00:22 : 25060 ips.txt 410 | 12/29/21 16:00:27 : 25060 ips.txt 411 | 12/29/21 17:00:26 : 25060 ips.txt 412 | 12/29/21 18:00:25 : 25060 ips.txt 413 | 12/29/21 19:00:29 : 25060 ips.txt 414 | 12/29/21 20:00:29 : 25060 ips.txt 415 | 12/29/21 21:00:26 : 25060 ips.txt 416 | 12/29/21 22:09:49 : 25060 ips.txt 417 | 12/29/21 23:09:49 : 25060 ips.txt 418 | 12/30/21 00:09:49 : 25060 ips.txt 419 | 12/30/21 01:09:46 : 25060 ips.txt 420 | 12/30/21 02:09:49 : 25060 ips.txt 421 | 12/30/21 03:09:49 : 25060 ips.txt 422 | 12/30/21 04:09:49 : 25060 ips.txt 423 | 12/30/21 05:09:48 : 25060 ips.txt 424 | 12/30/21 06:09:48 : 25060 ips.txt 425 | 12/30/21 07:09:46 : 25060 ips.txt 426 | 12/30/21 08:09:49 : 25060 ips.txt 427 | 12/30/21 09:09:50 : 25060 ips.txt 428 | 12/30/21 10:09:49 : 25060 ips.txt 429 | 12/30/21 11:09:47 : 25060 ips.txt 430 | 12/30/21 12:09:49 : 25060 ips.txt 431 | 12/30/21 20:00:27 : 25062 ips.txt 432 | 12/30/21 21:00:23 : 25062 ips.txt 433 | 12/30/21 22:00:22 : 25062 ips.txt 434 | 12/30/21 23:00:23 : 25062 ips.txt 435 | 12/31/21 00:00:24 : 25062 ips.txt 436 | 12/31/21 01:00:27 : 25062 ips.txt 437 | 12/31/21 02:00:25 : 25062 ips.txt 438 | 12/31/21 03:00:20 : 25062 ips.txt 439 | 12/31/21 04:00:22 : 25062 ips.txt 440 | 12/31/21 05:00:21 : 25062 ips.txt 441 | 12/31/21 06:00:22 : 25062 ips.txt 442 | 12/31/21 07:00:26 : 25062 ips.txt 443 | 12/31/21 08:00:22 : 25062 ips.txt 444 | 12/31/21 09:00:24 : 25062 ips.txt 445 | 12/31/21 10:00:27 : 25062 ips.txt 446 | 12/31/21 11:00:29 : 25062 ips.txt 447 | 12/31/21 12:00:19 : 25062 ips.txt 448 | 12/31/21 13:00:27 : 25062 ips.txt 449 | 12/31/21 14:00:22 : 25062 ips.txt 450 | 12/31/21 15:00:22 : 25062 ips.txt 451 | 12/31/21 16:00:24 : 25062 ips.txt 452 | 12/31/21 17:00:26 : 25062 ips.txt 453 | 12/31/21 18:00:22 : 25062 ips.txt 454 | 12/31/21 19:00:21 : 25062 ips.txt 455 | 12/31/21 20:00:21 : 25062 ips.txt 456 | 12/31/21 21:00:20 : 25062 ips.txt 457 | 12/31/21 22:00:20 : 25062 ips.txt 458 | 12/31/21 23:00:20 : 25062 ips.txt 459 | 01/01/22 00:00:20 : 25062 ips.txt 460 | 01/01/22 01:00:28 : 25062 ips.txt 461 | 01/01/22 02:00:22 : 25062 ips.txt 462 | 01/01/22 03:00:19 : 25062 ips.txt 463 | 01/01/22 04:00:22 : 25062 ips.txt 464 | 01/01/22 05:00:20 : 25062 ips.txt 465 | 01/01/22 06:00:25 : 25062 ips.txt 466 | 01/01/22 07:00:20 : 25062 ips.txt 467 | 01/01/22 08:00:22 : 25062 ips.txt 468 | 01/01/22 09:00:20 : 25062 ips.txt 469 | 01/01/22 10:00:21 : 25062 ips.txt 470 | 01/01/22 11:00:20 : 25062 ips.txt 471 | 01/01/22 12:00:19 : 25062 ips.txt 472 | 01/01/22 13:00:23 : 25062 ips.txt 473 | 01/01/22 14:00:21 : 25062 ips.txt 474 | 01/01/22 15:00:23 : 25062 ips.txt 475 | 01/01/22 16:00:18 : 25062 ips.txt 476 | 01/01/22 17:00:19 : 25062 ips.txt 477 | 01/01/22 18:00:22 : 25062 ips.txt 478 | 01/01/22 19:00:22 : 25062 ips.txt 479 | 01/01/22 20:00:22 : 25062 ips.txt 480 | 01/01/22 21:00:25 : 25062 ips.txt 481 | 01/01/22 22:00:27 : 25062 ips.txt 482 | 01/01/22 23:00:24 : 25062 ips.txt 483 | 01/02/22 00:00:34 : 25062 ips.txt 484 | 01/02/22 01:00:27 : 25062 ips.txt 485 | 01/02/22 02:00:21 : 25063 ips.txt 486 | 01/02/22 03:00:24 : 25063 ips.txt 487 | 01/02/22 04:00:20 : 25063 ips.txt 488 | 01/02/22 05:00:20 : 25063 ips.txt 489 | 01/02/22 06:00:21 : 25063 ips.txt 490 | 01/02/22 07:00:22 : 25063 ips.txt 491 | 01/02/22 08:00:21 : 25063 ips.txt 492 | 01/02/22 09:00:20 : 25063 ips.txt 493 | 01/02/22 10:00:25 : 25063 ips.txt 494 | 01/02/22 11:00:25 : 25063 ips.txt 495 | 01/02/22 12:00:24 : 25063 ips.txt 496 | 01/02/22 13:00:19 : 25063 ips.txt 497 | 01/02/22 14:00:20 : 25063 ips.txt 498 | 01/02/22 15:00:21 : 25063 ips.txt 499 | 01/02/22 16:00:22 : 25063 ips.txt 500 | 01/02/22 17:00:22 : 25063 ips.txt 501 | 01/02/22 18:00:21 : 25063 ips.txt 502 | 01/02/22 19:00:21 : 25063 ips.txt 503 | 01/02/22 20:00:26 : 25063 ips.txt 504 | 01/02/22 21:00:22 : 25063 ips.txt 505 | 01/02/22 22:00:28 : 25063 ips.txt 506 | 01/02/22 23:00:21 : 25063 ips.txt 507 | 01/03/22 00:00:25 : 25063 ips.txt 508 | 01/03/22 01:00:24 : 25063 ips.txt 509 | 01/03/22 02:00:21 : 25064 ips.txt 510 | 01/03/22 03:00:23 : 25064 ips.txt 511 | 01/03/22 04:00:20 : 25064 ips.txt 512 | 01/03/22 05:00:21 : 25064 ips.txt 513 | 01/03/22 06:00:23 : 25064 ips.txt 514 | 01/03/22 07:00:23 : 25064 ips.txt 515 | 01/03/22 08:00:21 : 25064 ips.txt 516 | 01/03/22 09:00:22 : 25064 ips.txt 517 | 01/03/22 10:00:22 : 25064 ips.txt 518 | 01/03/22 11:00:22 : 25064 ips.txt 519 | 01/03/22 12:00:21 : 25064 ips.txt 520 | 01/03/22 13:00:28 : 25064 ips.txt 521 | 01/03/22 14:00:20 : 25064 ips.txt 522 | 01/03/22 15:00:22 : 25064 ips.txt 523 | 01/03/22 16:00:28 : 25064 ips.txt 524 | 01/03/22 17:00:28 : 25064 ips.txt 525 | 01/03/22 18:00:25 : 25064 ips.txt 526 | 01/03/22 19:00:31 : 25064 ips.txt 527 | 01/03/22 20:00:22 : 25265 ips.txt 528 | 01/03/22 21:00:23 : 25265 ips.txt 529 | 01/03/22 22:00:22 : 25265 ips.txt 530 | 01/03/22 23:00:21 : 25265 ips.txt 531 | 01/04/22 00:00:26 : 25265 ips.txt 532 | 01/04/22 01:00:20 : 25265 ips.txt 533 | 01/04/22 02:00:23 : 25265 ips.txt 534 | 01/04/22 03:00:27 : 25265 ips.txt 535 | 01/04/22 04:00:29 : 25265 ips.txt 536 | 01/04/22 05:00:28 : 25265 ips.txt 537 | 01/04/22 06:00:30 : 25265 ips.txt 538 | 01/04/22 07:00:34 : 25265 ips.txt 539 | 01/04/22 08:00:28 : 25265 ips.txt 540 | 01/04/22 09:00:30 : 25265 ips.txt 541 | 01/04/22 10:00:32 : 25265 ips.txt 542 | 01/04/22 11:00:29 : 25265 ips.txt 543 | 01/04/22 12:00:31 : 25265 ips.txt 544 | 01/04/22 13:00:34 : 25265 ips.txt 545 | 01/04/22 14:00:29 : 25265 ips.txt 546 | 01/04/22 15:00:31 : 25265 ips.txt 547 | 01/04/22 16:00:32 : 25265 ips.txt 548 | 01/04/22 17:00:30 : 25265 ips.txt 549 | 01/04/22 18:00:35 : 25265 ips.txt 550 | 01/04/22 19:00:35 : 25267 ips.txt 551 | 01/04/22 20:00:34 : 25267 ips.txt 552 | 01/04/22 21:00:36 : 25267 ips.txt 553 | 01/04/22 22:00:34 : 25267 ips.txt 554 | 01/04/22 23:00:53 : 25267 ips.txt 555 | 01/05/22 00:00:33 : 25267 ips.txt 556 | 01/05/22 01:00:38 : 25267 ips.txt 557 | 01/05/22 02:00:34 : 25267 ips.txt 558 | 01/05/22 03:00:39 : 25267 ips.txt 559 | 01/05/22 04:00:38 : 25267 ips.txt 560 | 01/05/22 05:00:34 : 25267 ips.txt 561 | 01/05/22 06:00:36 : 25267 ips.txt 562 | 01/05/22 07:00:36 : 25267 ips.txt 563 | 01/05/22 08:00:38 : 25267 ips.txt 564 | 01/05/22 09:00:40 : 25267 ips.txt 565 | 01/05/22 10:00:37 : 25267 ips.txt 566 | 01/05/22 11:00:38 : 25267 ips.txt 567 | 01/05/22 12:00:36 : 25267 ips.txt 568 | 01/05/22 13:00:30 : 25267 ips.txt 569 | 01/05/22 14:00:22 : 25267 ips.txt 570 | 01/05/22 15:00:24 : 25267 ips.txt 571 | 01/05/22 16:00:23 : 25267 ips.txt 572 | 01/05/22 17:00:26 : 25267 ips.txt 573 | 01/05/22 18:00:22 : 25267 ips.txt 574 | 01/05/22 20:00:38 : 25267 ips.txt 575 | 01/05/22 21:00:37 : 25267 ips.txt 576 | 01/05/22 22:00:37 : 25267 ips.txt 577 | 01/05/22 23:00:27 : 25267 ips.txt 578 | 01/06/22 00:00:29 : 25267 ips.txt 579 | 01/06/22 01:00:30 : 25267 ips.txt 580 | 01/06/22 02:00:23 : 25267 ips.txt 581 | 01/06/22 03:00:25 : 25267 ips.txt 582 | 01/06/22 04:00:23 : 25267 ips.txt 583 | 01/06/22 05:00:22 : 25267 ips.txt 584 | 01/06/22 06:00:22 : 25267 ips.txt 585 | 01/06/22 07:00:25 : 25267 ips.txt 586 | 01/06/22 08:00:28 : 25267 ips.txt 587 | 01/06/22 09:00:24 : 25267 ips.txt 588 | 01/06/22 10:00:36 : 25267 ips.txt 589 | 01/06/22 11:00:30 : 25267 ips.txt 590 | 01/06/22 12:00:30 : 25267 ips.txt 591 | 01/06/22 13:00:32 : 25267 ips.txt 592 | 01/06/22 14:00:29 : 25267 ips.txt 593 | 01/06/22 15:00:35 : 25267 ips.txt 594 | 01/06/22 16:00:31 : 25267 ips.txt 595 | 01/06/22 17:00:32 : 25267 ips.txt 596 | 01/06/22 18:00:32 : 25267 ips.txt 597 | 01/06/22 19:00:33 : 25267 ips.txt 598 | 01/06/22 20:00:28 : 25267 ips.txt 599 | 01/06/22 21:00:37 : 25267 ips.txt 600 | 01/06/22 22:00:26 : 25267 ips.txt 601 | 01/06/22 23:00:29 : 25285 ips.txt 602 | 01/07/22 00:00:32 : 25285 ips.txt 603 | 01/07/22 01:00:30 : 25285 ips.txt 604 | 01/07/22 02:00:29 : 25285 ips.txt 605 | 01/07/22 03:00:28 : 25285 ips.txt 606 | 01/07/22 04:00:35 : 25285 ips.txt 607 | 01/07/22 05:00:31 : 25285 ips.txt 608 | 01/07/22 06:00:32 : 25285 ips.txt 609 | 01/07/22 07:00:30 : 25285 ips.txt 610 | 01/07/22 08:00:35 : 25285 ips.txt 611 | 01/07/22 09:00:33 : 25285 ips.txt 612 | 01/07/22 10:00:28 : 25285 ips.txt 613 | 01/07/22 11:00:24 : 25285 ips.txt 614 | 01/07/22 12:00:26 : 25286 ips.txt 615 | 01/07/22 13:00:27 : 25286 ips.txt 616 | 01/07/22 14:00:25 : 25286 ips.txt 617 | 01/07/22 15:00:29 : 25286 ips.txt 618 | 01/07/22 16:00:37 : 25286 ips.txt 619 | 01/07/22 17:00:30 : 25286 ips.txt 620 | 01/07/22 18:00:35 : 25286 ips.txt 621 | --------------------------------------------------------------------------------