Skip to content

Instantly share code, notes, and snippets.

@TheSkallywag
Created December 19, 2022 22:16
Show Gist options
  • Save TheSkallywag/cd39135e0298324bab0817eba09f4c92 to your computer and use it in GitHub Desktop.
Save TheSkallywag/cd39135e0298324bab0817eba09f4c92 to your computer and use it in GitHub Desktop.
stretchoid.com IPs as of Dec 19, 2022
I used this handy one-liner to search ip ranges while looking up its PTR record.
The PTR record will have the string "stretchoid". This process took about an hour.
for N in {128..255}; do echo "Testing 192.241.$N.0 - 192.241.$N.255" >> stretchoid_ips.txt; for L in {0..255}; do host -t PTR "192.241.$N.$L" | grep -qF 'stretchoid.com.' && echo "192.241.$N.$L `host -t PTR \"192.241.$N.$L\"`" >> stretchoid_ips.txt; done; done
Credit goes to sissy for the idea:
https://forum.netgate.com/topic/169024/stretchoid-com-ip-list-for-use-in-blocking-their-port-scans?_=1671484145965&lang=en-US
I then opened up the text file in notepad++ and did a regular expressions Search/Replace (CTRL+H)
Search for:
(\s[\d]{1,3}\.[\d]{3}\.[\d]{3}\.[\d]{3}\.in-addr.arpa domain name pointer (.*).stretchoid.com.)
Replace with:
stretchoid
After replacing all occurances in the document, I then manually removed the remaining lines
without the word "stretchoid" that which indicates are not stretchoid IPs.
The remaining IPs were stretchoid IPs, in which I removed the word "stretchoid" from all those,
leaving only a list of IPs that no doubt belong to stretchoid.
Finally I converted the huge list of stretchoid IPs into CIDR format using python.
```
import ipaddress
with open('stretchoid_ips.txt') as f:
lines = [line.rstrip() for line in f]
# First, let's convert the string objects into IPv4Address objects
ips = [ipaddress.IPv4Address(_) for _ in lines]
# Now we can summarize them
cidrs = list(ipaddress.collapse_addresses(ips))
print(cidrs)
```
Credit goes to accdias for the idea:
https://stackoverflow.com/questions/71223984/convert-list-of-ips-into-cidr-blocks
Here is the stretchoid IP list (1,639) as of Dec 19, 2022
```
192.241.192.8
192.241.192.13
192.241.192.14
192.241.192.20
192.241.192.21
192.241.192.25
192.241.192.26
192.241.192.27
192.241.192.34
192.241.192.37
192.241.192.38
192.241.192.43
192.241.192.55
192.241.192.58
192.241.192.62
192.241.192.65
192.241.192.66
192.241.192.72
192.241.192.78
192.241.192.79
192.241.192.80
192.241.192.81
192.241.192.82
192.241.192.83
192.241.192.85
192.241.192.91
192.241.192.92
192.241.192.96
192.241.192.97
192.241.192.103
192.241.192.105
192.241.192.110
192.241.192.118
192.241.192.120
192.241.192.133
192.241.192.141
192.241.192.148
192.241.192.159
192.241.192.164
192.241.192.167
192.241.192.168
192.241.192.170
192.241.192.181
192.241.192.185
192.241.192.190
192.241.192.191
192.241.192.196
192.241.192.199
192.241.192.200
192.241.192.203
192.241.192.204
192.241.192.206
192.241.192.215
192.241.192.222
192.241.192.226
192.241.192.229
192.241.192.232
192.241.192.236
192.241.192.238
192.241.192.242
192.241.192.243
192.241.192.251
192.241.193.13
192.241.193.15
192.241.193.21
192.241.193.23
192.241.193.43
192.241.193.55
192.241.193.60
192.241.193.77
192.241.193.82
192.241.193.94
192.241.193.98
192.241.193.100
192.241.193.104
192.241.193.105
192.241.193.110
192.241.193.111
192.241.193.114
192.241.193.119
192.241.193.121
192.241.193.126
192.241.193.129
192.241.193.130
192.241.193.136
192.241.193.146
192.241.193.148
192.241.193.156
192.241.193.158
192.241.193.165
192.241.193.168
192.241.193.170
192.241.193.176
192.241.193.177
192.241.193.180
192.241.193.182
192.241.193.183
192.241.193.187
192.241.193.195
192.241.193.196
192.241.193.199
192.241.193.201
192.241.193.210
192.241.193.221
192.241.193.251
192.241.194.9
192.241.194.16
192.241.194.23
192.241.194.29
192.241.194.30
192.241.194.31
192.241.194.38
192.241.194.48
192.241.194.51
192.241.194.57
192.241.194.63
192.241.194.73
192.241.194.90
192.241.194.97
192.241.194.100
192.241.194.104
192.241.194.105
192.241.194.108
192.241.194.111
192.241.194.119
192.241.194.123
192.241.194.126
192.241.194.134
192.241.194.137
192.241.194.138
192.241.194.139
192.241.194.140
192.241.194.141
192.241.194.142
192.241.194.144
192.241.194.153
192.241.194.160
192.241.194.163
192.241.194.164
192.241.194.166
192.241.194.168
192.241.194.172
192.241.194.190
192.241.194.194
192.241.194.196
192.241.194.198
192.241.194.204
192.241.194.205
192.241.194.212
192.241.194.218
192.241.194.219
192.241.194.235
192.241.194.240
192.241.194.244
192.241.194.247
192.241.194.251
192.241.195.5
192.241.195.6
192.241.195.14
192.241.195.15
192.241.195.28
192.241.195.34
192.241.195.37
192.241.195.38
192.241.195.40
192.241.195.46
192.241.195.48
192.241.195.49
192.241.195.51
192.241.195.53
192.241.195.56
192.241.195.57
192.241.195.58
192.241.195.59
192.241.195.61
192.241.195.62
192.241.195.65
192.241.195.66
192.241.195.71
192.241.195.72
192.241.195.77
192.241.195.81
192.241.195.101
192.241.195.103
192.241.195.104
192.241.195.114
192.241.195.115
192.241.195.116
192.241.195.118
192.241.195.121
192.241.195.123
192.241.195.124
192.241.195.125
192.241.195.130
192.241.195.138
192.241.195.140
192.241.195.141
192.241.195.143
192.241.195.156
192.241.195.162
192.241.195.166
192.241.195.173
192.241.195.179
192.241.195.180
192.241.195.185
192.241.195.186
192.241.195.189
192.241.195.190
192.241.195.195
192.241.195.196
192.241.195.223
192.241.195.228
192.241.195.232
192.241.195.233
192.241.195.235
192.241.195.240
192.241.195.245
192.241.195.247
192.241.196.5
192.241.196.48
192.241.196.49
192.241.196.56
192.241.196.63
192.241.196.64
192.241.196.67
192.241.196.72
192.241.196.75
192.241.196.89
192.241.196.93
192.241.196.96
192.241.196.107
192.241.196.109
192.241.196.112
192.241.196.118
192.241.196.120
192.241.196.123
192.241.196.124
192.241.196.126
192.241.196.127
192.241.196.130
192.241.196.134
192.241.196.136
192.241.196.142
192.241.196.143
192.241.196.145
192.241.196.147
192.241.196.149
192.241.196.156
192.241.196.157
192.241.196.158
192.241.196.159
192.241.196.160
192.241.196.163
192.241.196.167
192.241.196.168
192.241.196.169
192.241.196.174
192.241.196.175
192.241.196.178
192.241.196.179
192.241.196.182
192.241.196.184
192.241.196.189
192.241.196.197
192.241.196.203
192.241.196.208
192.241.196.212
192.241.196.214
192.241.196.215
192.241.196.217
192.241.196.220
192.241.196.221
192.241.196.222
192.241.196.225
192.241.196.237
192.241.196.240
192.241.196.241
192.241.196.245
192.241.196.247
192.241.196.250
192.241.197.5
192.241.197.6
192.241.197.8
192.241.197.13
192.241.197.16
192.241.197.18
192.241.197.21
192.241.197.25
192.241.197.30
192.241.197.31
192.241.197.33
192.241.197.34
192.241.197.37
192.241.197.43
192.241.197.44
192.241.197.54
192.241.197.56
192.241.197.63
192.241.197.64
192.241.197.66
192.241.197.70
192.241.197.71
192.241.197.72
192.241.197.73
192.241.197.76
192.241.197.78
192.241.197.80
192.241.197.81
192.241.197.83
192.241.197.86
192.241.197.96
192.241.197.103
192.241.197.105
192.241.197.116
192.241.197.117
192.241.197.119
192.241.197.120
192.241.197.121
192.241.197.122
192.241.197.123
192.241.197.125
192.241.197.129
192.241.197.132
192.241.197.133
192.241.197.140
192.241.197.145
192.241.197.147
192.241.197.150
192.241.197.155
192.241.197.156
192.241.197.157
192.241.197.160
192.241.197.162
192.241.197.170
192.241.197.173
192.241.197.175
192.241.197.181
192.241.197.186
192.241.197.189
192.241.197.196
192.241.197.198
192.241.197.203
192.241.197.206
192.241.197.213
192.241.197.215
192.241.197.218
192.241.197.220
192.241.197.222
192.241.197.223
192.241.197.236
192.241.197.238
192.241.197.240
192.241.197.243
192.241.197.248
192.241.197.251
192.241.197.252
192.241.198.8
192.241.198.9
192.241.198.11
192.241.198.13
192.241.198.16
192.241.198.18
192.241.198.19
192.241.198.30
192.241.198.31
192.241.198.33
192.241.198.37
192.241.198.38
192.241.198.39
192.241.198.50
192.241.198.51
192.241.198.52
192.241.198.53
192.241.198.54
192.241.198.59
192.241.198.64
192.241.198.66
192.241.198.70
192.241.198.75
192.241.198.77
192.241.198.82
192.241.198.93
192.241.198.95
192.241.198.96
192.241.198.101
192.241.198.103
192.241.198.105
192.241.198.106
192.241.198.109
192.241.198.117
192.241.198.122
192.241.198.123
192.241.198.129
192.241.198.131
192.241.198.133
192.241.198.135
192.241.198.140
192.241.198.145
192.241.198.152
192.241.198.171
192.241.198.185
192.241.198.189
192.241.198.190
192.241.198.191
192.241.198.193
192.241.198.196
192.241.198.200
192.241.198.201
192.241.198.202
192.241.198.205
192.241.198.217
192.241.198.220
192.241.198.224
192.241.198.225
192.241.198.229
192.241.198.231
192.241.198.234
192.241.198.235
192.241.198.236
192.241.198.238
192.241.198.239
192.241.198.241
192.241.198.245
192.241.198.246
192.241.198.249
192.241.199.4
192.241.199.8
192.241.199.18
192.241.199.19
192.241.199.24
192.241.199.29
192.241.199.30
192.241.199.32
192.241.199.47
192.241.199.51
192.241.199.52
192.241.199.53
192.241.199.57
192.241.199.65
192.241.199.66
192.241.199.73
192.241.199.75
192.241.199.77
192.241.199.81
192.241.199.87
192.241.199.91
192.241.199.95
192.241.199.96
192.241.199.97
192.241.199.99
192.241.199.104
192.241.199.105
192.241.199.106
192.241.199.111
192.241.199.112
192.241.199.113
192.241.199.118
192.241.199.123
192.241.199.126
192.241.199.130
192.241.199.134
192.241.199.135
192.241.199.144
192.241.199.145
192.241.199.150
192.241.199.155
192.241.199.164
192.241.199.171
192.241.199.174
192.241.199.180
192.241.199.182
192.241.199.191
192.241.199.193
192.241.199.195
192.241.199.201
192.241.199.202
192.241.199.206
192.241.199.210
192.241.199.211
192.241.199.212
192.241.199.218
192.241.199.219
192.241.199.220
192.241.199.222
192.241.199.237
192.241.199.238
192.241.199.239
192.241.199.246
192.241.199.250
192.241.199.252
192.241.200.4
192.241.200.13
192.241.200.24
192.241.200.29
192.241.200.30
192.241.200.31
192.241.200.33
192.241.200.36
192.241.200.47
192.241.200.49
192.241.200.52
192.241.200.55
192.241.200.58
192.241.200.59
192.241.200.62
192.241.200.65
192.241.200.66
192.241.200.71
192.241.200.73
192.241.200.74
192.241.200.78
192.241.200.85
192.241.200.88
192.241.200.89
192.241.200.95
192.241.200.97
192.241.200.98
192.241.200.100
192.241.200.104
192.241.200.107
192.241.200.108
192.241.200.116
192.241.200.117
192.241.200.121
192.241.200.126
192.241.200.131
192.241.200.140
192.241.200.146
192.241.200.149
192.241.200.154
192.241.200.155
192.241.200.158
192.241.200.164
192.241.200.168
192.241.200.174
192.241.200.178
192.241.200.179
192.241.200.183
192.241.200.185
192.241.200.187
192.241.200.188
192.241.200.194
192.241.200.197
192.241.200.201
192.241.200.206
192.241.200.213
192.241.200.215
192.241.200.225
192.241.200.226
192.241.200.227
192.241.200.231
192.241.200.235
192.241.200.236
192.241.200.251
192.241.201.8
192.241.201.11
192.241.201.16
192.241.201.18
192.241.201.20
192.241.201.21
192.241.201.23
192.241.201.31
192.241.201.37
192.241.201.42
192.241.201.43
192.241.201.45
192.241.201.46
192.241.201.52
192.241.201.68
192.241.201.75
192.241.201.77
192.241.201.79
192.241.201.80
192.241.201.85
192.241.201.86
192.241.201.87
192.241.201.89
192.241.201.91
192.241.201.92
192.241.201.104
192.241.201.110
192.241.201.112
192.241.201.113
192.241.201.118
192.241.201.125
192.241.201.130
192.241.201.135
192.241.201.141
192.241.201.144
192.241.201.152
192.241.201.153
192.241.201.159
192.241.201.165
192.241.201.166
192.241.201.172
192.241.201.173
192.241.201.179
192.241.201.182
192.241.201.184
192.241.201.187
192.241.201.188
192.241.201.192
192.241.201.194
192.241.201.197
192.241.201.198
192.241.201.204
192.241.201.207
192.241.201.209
192.241.201.214
192.241.201.218
192.241.201.221
192.241.201.224
192.241.201.228
192.241.201.232
192.241.201.233
192.241.201.234
192.241.201.241
192.241.201.244
192.241.201.251
192.241.202.13
192.241.202.20
192.241.202.21
192.241.202.24
192.241.202.27
192.241.202.29
192.241.202.30
192.241.202.31
192.241.202.37
192.241.202.38
192.241.202.41
192.241.202.43
192.241.202.54
192.241.202.56
192.241.202.59
192.241.202.61
192.241.202.62
192.241.202.66
192.241.202.68
192.241.202.75
192.241.202.77
192.241.202.81
192.241.202.82
192.241.202.85
192.241.202.88
192.241.202.90
192.241.202.91
192.241.202.92
192.241.202.93
192.241.202.99
192.241.202.102
192.241.202.105
192.241.202.106
192.241.202.112
192.241.202.119
192.241.202.124
192.241.202.125
192.241.202.127
192.241.202.131
192.241.202.132
192.241.202.134
192.241.202.142
192.241.202.145
192.241.202.146
192.241.202.149
192.241.202.152
192.241.202.155
192.241.202.160
192.241.202.163
192.241.202.167
192.241.202.172
192.241.202.173
192.241.202.174
192.241.202.181
192.241.202.186
192.241.202.187
192.241.202.193
192.241.202.196
192.241.202.200
192.241.202.203
192.241.202.204
192.241.202.205
192.241.202.207
192.241.202.208
192.241.202.212
192.241.202.215
192.241.202.218
192.241.202.219
192.241.202.221
192.241.202.222
192.241.202.225
192.241.202.229
192.241.202.232
192.241.202.235
192.241.202.238
192.241.202.240
192.241.202.246
192.241.202.248
192.241.202.251
192.241.202.252
192.241.203.4
192.241.203.5
192.241.203.6
192.241.203.8
192.241.203.13
192.241.203.14
192.241.203.17
192.241.203.18
192.241.203.19
192.241.203.24
192.241.203.28
192.241.203.30
192.241.203.31
192.241.203.32
192.241.203.33
192.241.203.37
192.241.203.38
192.241.203.43
192.241.203.50
192.241.203.52
192.241.203.62
192.241.203.65
192.241.203.69
192.241.203.76
192.241.203.79
192.241.203.84
192.241.203.88
192.241.203.91
192.241.203.97
192.241.203.99
192.241.203.103
192.241.203.104
192.241.203.106
192.241.203.112
192.241.203.115
192.241.203.119
192.241.203.129
192.241.203.134
192.241.203.138
192.241.203.140
192.241.203.142
192.241.203.143
192.241.203.146
192.241.203.147
192.241.203.164
192.241.203.171
192.241.203.180
192.241.203.181
192.241.203.182
192.241.203.184
192.241.203.186
192.241.203.189
192.241.203.193
192.241.203.194
192.241.203.198
192.241.203.200
192.241.203.205
192.241.203.208
192.241.203.209
192.241.203.211
192.241.203.213
192.241.203.217
192.241.203.219
192.241.203.228
192.241.203.234
192.241.203.236
192.241.203.245
192.241.203.248
192.241.203.250
192.241.204.4
192.241.204.6
192.241.204.16
192.241.204.28
192.241.204.31
192.241.204.35
192.241.204.36
192.241.204.38
192.241.204.39
192.241.204.42
192.241.204.44
192.241.204.48
192.241.204.54
192.241.204.56
192.241.204.58
192.241.204.61
192.241.204.63
192.241.204.66
192.241.204.72
192.241.204.75
192.241.204.84
192.241.204.85
192.241.204.87
192.241.204.90
192.241.204.91
192.241.204.96
192.241.204.99
192.241.204.101
192.241.204.108
192.241.204.111
192.241.204.112
192.241.204.114
192.241.204.115
192.241.204.125
192.241.204.127
192.241.204.129
192.241.204.131
192.241.204.132
192.241.204.134
192.241.204.137
192.241.204.141
192.241.204.142
192.241.204.144
192.241.204.149
192.241.204.151
192.241.204.157
192.241.204.160
192.241.204.163
192.241.204.164
192.241.204.169
192.241.204.173
192.241.204.176
192.241.204.186
192.241.204.193
192.241.204.195
192.241.204.198
192.241.204.201
192.241.204.202
192.241.204.207
192.241.204.208
192.241.204.209
192.241.204.213
192.241.204.230
192.241.204.232
192.241.204.235
192.241.204.237
192.241.204.242
192.241.204.244
192.241.204.251
192.241.204.252
192.241.205.10
192.241.205.11
192.241.205.12
192.241.205.14
192.241.205.18
192.241.205.21
192.241.205.22
192.241.205.24
192.241.205.25
192.241.205.27
192.241.205.30
192.241.205.31
192.241.205.33
192.241.205.39
192.241.205.41
192.241.205.51
192.241.205.54
192.241.205.55
192.241.205.59
192.241.205.61
192.241.205.62
192.241.205.65
192.241.205.68
192.241.205.71
192.241.205.74
192.241.205.76
192.241.205.77
192.241.205.78
192.241.205.81
192.241.205.82
192.241.205.83
192.241.205.84
192.241.205.88
192.241.205.89
192.241.205.90
192.241.205.93
192.241.205.99
192.241.205.100
192.241.205.104
192.241.205.109
192.241.205.110
192.241.205.113
192.241.205.116
192.241.205.118
192.241.205.120
192.241.205.123
192.241.205.124
192.241.205.126
192.241.205.128
192.241.205.139
192.241.205.140
192.241.205.143
192.241.205.145
192.241.205.147
192.241.205.155
192.241.205.157
192.241.205.158
192.241.205.160
192.241.205.162
192.241.205.166
192.241.205.168
192.241.205.169
192.241.205.171
192.241.205.174
192.241.205.175
192.241.205.177
192.241.205.179
192.241.205.181
192.241.205.187
192.241.205.188
192.241.205.195
192.241.205.198
192.241.205.201
192.241.205.202
192.241.205.207
192.241.205.209
192.241.205.210
192.241.205.211
192.241.205.217
192.241.205.218
192.241.205.219
192.241.205.220
192.241.205.222
192.241.205.223
192.241.205.224
192.241.205.226
192.241.205.227
192.241.205.231
192.241.205.233
192.241.205.235
192.241.205.238
192.241.205.239
192.241.205.245
192.241.205.247
192.241.205.249
192.241.205.251
192.241.205.252
192.241.206.6
192.241.206.10
192.241.206.11
192.241.206.14
192.241.206.15
192.241.206.16
192.241.206.17
192.241.206.20
192.241.206.21
192.241.206.25
192.241.206.26
192.241.206.27
192.241.206.31
192.241.206.33
192.241.206.34
192.241.206.36
192.241.206.37
192.241.206.41
192.241.206.42
192.241.206.43
192.241.206.44
192.241.206.46
192.241.206.47
192.241.206.49
192.241.206.50
192.241.206.53
192.241.206.55
192.241.206.56
192.241.206.57
192.241.206.58
192.241.206.59
192.241.206.64
192.241.206.65
192.241.206.68
192.241.206.69
192.241.206.70
192.241.206.71
192.241.206.75
192.241.206.78
192.241.206.79
192.241.206.82
192.241.206.84
192.241.206.85
192.241.206.88
192.241.206.89
192.241.206.90
192.241.206.92
192.241.206.94
192.241.206.96
192.241.206.97
192.241.206.98
192.241.206.103
192.241.206.108
192.241.206.109
192.241.206.112
192.241.206.113
192.241.206.114
192.241.206.115
192.241.206.119
192.241.206.120
192.241.206.121
192.241.206.122
192.241.206.128
192.241.206.129
192.241.206.131
192.241.206.133
192.241.206.134
192.241.206.135
192.241.206.136
192.241.206.137
192.241.206.144
192.241.206.146
192.241.206.147
192.241.206.148
192.241.206.152
192.241.206.154
192.241.206.155
192.241.206.156
192.241.206.159
192.241.206.160
192.241.206.161
192.241.206.162
192.241.206.163
192.241.206.164
192.241.206.168
192.241.206.169
192.241.206.175
192.241.206.176
192.241.206.177
192.241.206.179
192.241.206.181
192.241.206.185
192.241.206.186
192.241.206.187
192.241.206.188
192.241.206.189
192.241.206.190
192.241.206.192
192.241.206.197
192.241.206.198
192.241.206.199
192.241.206.201
192.241.206.202
192.241.206.203
192.241.206.204
192.241.206.206
192.241.206.208
192.241.206.209
192.241.206.210
192.241.206.211
192.241.206.213
192.241.206.214
192.241.206.217
192.241.206.221
192.241.206.222
192.241.206.223
192.241.206.225
192.241.206.226
192.241.206.227
192.241.206.229
192.241.206.232
192.241.206.233
192.241.206.234
192.241.206.236
192.241.206.239
192.241.206.241
192.241.206.247
192.241.207.4
192.241.207.8
192.241.207.16
192.241.207.17
192.241.207.22
192.241.207.27
192.241.207.31
192.241.207.32
192.241.207.34
192.241.207.37
192.241.207.43
192.241.207.51
192.241.207.57
192.241.207.74
192.241.207.79
192.241.207.94
192.241.207.98
192.241.207.109
192.241.207.111
192.241.207.112
192.241.207.115
192.241.207.116
192.241.207.117
192.241.207.118
192.241.207.129
192.241.207.130
192.241.207.134
192.241.207.136
192.241.207.137
192.241.207.140
192.241.207.142
192.241.207.146
192.241.207.150
192.241.207.152
192.241.207.153
192.241.207.158
192.241.207.161
192.241.207.166
192.241.207.167
192.241.207.168
192.241.207.171
192.241.207.180
192.241.207.181
192.241.207.182
192.241.207.185
192.241.207.186
192.241.207.189
192.241.207.191
192.241.207.194
192.241.207.195
192.241.207.196
192.241.207.200
192.241.207.202
192.241.207.204
192.241.207.208
192.241.207.214
192.241.207.217
192.241.207.219
192.241.207.221
192.241.207.222
192.241.207.223
192.241.207.227
192.241.207.230
192.241.207.235
192.241.207.236
192.241.207.237
192.241.207.244
192.241.207.245
192.241.207.247
192.241.207.249
192.241.208.5
192.241.208.7
192.241.208.13
192.241.208.16
192.241.208.18
192.241.208.27
192.241.208.28
192.241.208.29
192.241.208.34
192.241.208.36
192.241.208.40
192.241.208.41
192.241.208.43
192.241.208.45
192.241.208.47
192.241.208.48
192.241.208.49
192.241.208.50
192.241.208.53
192.241.208.54
192.241.208.55
192.241.208.58
192.241.208.61
192.241.208.63
192.241.208.64
192.241.208.65
192.241.208.66
192.241.208.68
192.241.208.69
192.241.208.70
192.241.208.74
192.241.208.75
192.241.208.76
192.241.208.77
192.241.208.78
192.241.208.79
192.241.208.81
192.241.208.82
192.241.208.84
192.241.208.87
192.241.208.88
192.241.208.93
192.241.208.101
192.241.208.103
192.241.208.104
192.241.208.107
192.241.208.108
192.241.208.109
192.241.208.113
192.241.208.116
192.241.208.117
192.241.208.123
192.241.208.126
192.241.208.127
192.241.208.129
192.241.208.130
192.241.208.131
192.241.208.133
192.241.208.143
192.241.208.148
192.241.208.150
192.241.208.151
192.241.208.153
192.241.208.155
192.241.208.156
192.241.208.162
192.241.208.167
192.241.208.169
192.241.208.170
192.241.208.171
192.241.208.172
192.241.208.174
192.241.208.175
192.241.208.176
192.241.208.178
192.241.208.180
192.241.208.184
192.241.208.189
192.241.208.192
192.241.208.195
192.241.208.201
192.241.208.203
192.241.208.210
192.241.208.212
192.241.208.213
192.241.208.216
192.241.208.223
192.241.208.224
192.241.208.226
192.241.208.228
192.241.208.229
192.241.208.234
192.241.208.238
192.241.208.240
192.241.208.241
192.241.208.242
192.241.208.244
192.241.208.245
192.241.208.247
192.241.209.4
192.241.209.7
192.241.209.10
192.241.209.11
192.241.209.16
192.241.209.17
192.241.209.20
192.241.209.21
192.241.209.22
192.241.209.24
192.241.209.25
192.241.209.26
192.241.209.28
192.241.209.29
192.241.209.34
192.241.209.35
192.241.209.39
192.241.209.41
192.241.209.42
192.241.209.43
192.241.209.44
192.241.209.45
192.241.209.46
192.241.209.50
192.241.209.53
192.241.209.55
192.241.209.58
192.241.209.59
192.241.209.62
192.241.209.65
192.241.209.66
192.241.209.73
192.241.209.76
192.241.209.77
192.241.209.78
192.241.209.79
192.241.209.81
192.241.209.85
192.241.209.88
192.241.209.91
192.241.209.93
192.241.209.98
192.241.209.99
192.241.209.104
192.241.209.105
192.241.209.108
192.241.209.111
192.241.209.113
192.241.209.114
192.241.209.116
192.241.209.120
192.241.209.121
192.241.209.122
192.241.209.124
192.241.209.126
192.241.209.127
192.241.209.129
192.241.209.132
192.241.209.133
192.241.209.134
192.241.209.138
192.241.209.140
192.241.209.141
192.241.209.143
192.241.209.145
192.241.209.146
192.241.209.147
192.241.209.150
192.241.209.152
192.241.209.157
192.241.209.165
192.241.209.167
192.241.209.169
192.241.209.172
192.241.209.173
192.241.209.175
192.241.209.184
192.241.209.190
192.241.209.196
192.241.209.199
192.241.209.206
192.241.209.210
192.241.209.221
192.241.209.234
192.241.209.236
192.241.209.241
192.241.209.244
192.241.210.7
192.241.210.11
192.241.210.12
192.241.210.22
192.241.210.27
192.241.210.31
192.241.210.38
192.241.210.40
192.241.210.42
192.241.210.54
192.241.210.57
192.241.210.61
192.241.210.64
192.241.210.68
192.241.210.69
192.241.210.72
192.241.210.81
192.241.210.84
192.241.210.88
192.241.210.106
192.241.210.107
192.241.210.108
192.241.210.123
192.241.210.128
192.241.210.129
192.241.210.137
192.241.210.138
192.241.210.140
192.241.210.142
192.241.210.147
192.241.210.150
192.241.210.158
192.241.210.164
192.241.210.165
192.241.210.169
192.241.210.170
192.241.210.173
192.241.210.182
192.241.210.186
192.241.210.195
192.241.210.196
192.241.210.200
192.241.210.201
192.241.210.202
192.241.210.210
192.241.210.211
192.241.210.212
192.241.210.213
192.241.210.215
192.241.210.222
192.241.210.223
192.241.210.225
192.241.210.226
192.241.210.229
192.241.210.230
192.241.210.231
192.241.210.236
192.241.210.239
192.241.210.240
192.241.210.245
192.241.210.247
192.241.210.249
192.241.211.4
192.241.211.5
192.241.211.6
192.241.211.8
192.241.211.14
192.241.211.22
192.241.211.25
192.241.211.31
192.241.211.32
192.241.211.35
192.241.211.41
192.241.211.45
192.241.211.48
192.241.211.49
192.241.211.54
192.241.211.58
192.241.211.59
192.241.211.60
192.241.211.62
192.241.211.69
192.241.211.70
192.241.211.71
192.241.211.78
192.241.211.79
192.241.211.81
192.241.211.83
192.241.211.84
192.241.211.86
192.241.211.87
192.241.211.90
192.241.211.91
192.241.211.93
192.241.211.94
192.241.211.97
192.241.211.98
192.241.211.103
192.241.211.107
192.241.211.109
192.241.211.110
192.241.211.115
192.241.211.116
192.241.211.121
192.241.211.123
192.241.211.125
192.241.211.126
192.241.211.127
192.241.211.130
192.241.211.132
192.241.211.135
192.241.211.138
192.241.211.140
192.241.211.141
192.241.211.143
192.241.211.145
192.241.211.146
192.241.211.149
192.241.211.150
192.241.211.186
192.241.211.187
192.241.211.188
192.241.211.196
192.241.211.197
192.241.211.199
192.241.211.200
192.241.211.201
192.241.211.209
192.241.211.210
192.241.211.213
192.241.211.217
192.241.211.219
192.241.211.221
192.241.211.223
192.241.211.225
192.241.211.230
192.241.211.231
192.241.211.232
192.241.211.234
192.241.211.236
192.241.211.237
192.241.211.238
192.241.211.239
192.241.211.240
192.241.211.245
192.241.211.246
192.241.211.247
192.241.211.249
192.241.211.250
192.241.211.252
192.241.212.6
192.241.212.7
192.241.212.9
192.241.212.10
192.241.212.11
192.241.212.12
192.241.212.14
192.241.212.15
192.241.212.19
192.241.212.22
192.241.212.23
192.241.212.24
192.241.212.28
192.241.212.29
192.241.212.31
192.241.212.32
192.241.212.33
192.241.212.35
192.241.212.36
192.241.212.39
192.241.212.44
192.241.212.45
192.241.212.49
192.241.212.50
192.241.212.52
192.241.212.53
192.241.212.54
192.241.212.55
192.241.212.56
192.241.212.58
192.241.212.65
192.241.212.67
192.241.212.68
192.241.212.70
192.241.212.71
192.241.212.72
192.241.212.75
192.241.212.76
192.241.212.78
192.241.212.79
192.241.212.81
192.241.212.83
192.241.212.84
192.241.212.85
192.241.212.86
192.241.212.87
192.241.212.88
192.241.212.89
192.241.212.90
192.241.212.92
192.241.212.93
192.241.212.94
192.241.212.95
192.241.212.97
192.241.212.98
192.241.212.100
192.241.212.101
192.241.212.102
192.241.212.103
192.241.212.105
192.241.212.107
192.241.212.108
192.241.212.111
192.241.212.113
192.241.212.115
192.241.212.116
192.241.212.117
192.241.212.118
192.241.212.119
192.241.212.122
192.241.212.123
192.241.212.126
192.241.212.128
192.241.212.131
192.241.212.132
192.241.212.134
192.241.212.136
192.241.212.138
192.241.212.140
192.241.212.141
192.241.212.143
192.241.212.147
192.241.212.149
192.241.212.150
192.241.212.151
192.241.212.152
192.241.212.153
192.241.212.154
192.241.212.156
192.241.212.158
192.241.212.160
192.241.212.162
192.241.212.165
192.241.212.170
192.241.212.171
192.241.212.172
192.241.212.173
192.241.212.177
192.241.212.178
192.241.212.182
192.241.212.183
192.241.212.184
192.241.212.186
192.241.212.187
192.241.212.190
192.241.212.191
192.241.212.192
192.241.212.193
192.241.212.195
192.241.212.196
192.241.212.202
192.241.212.203
192.241.212.204
192.241.212.205
192.241.212.209
192.241.212.210
192.241.212.213
192.241.212.215
192.241.212.216
192.241.212.217
192.241.212.218
192.241.212.219
192.241.212.220
192.241.212.223
192.241.212.226
192.241.212.227
192.241.212.228
192.241.212.230
192.241.212.232
192.241.212.233
192.241.212.237
192.241.212.238
192.241.212.241
192.241.212.242
192.241.212.246
192.241.212.247
192.241.212.248
192.241.212.249
192.241.212.251
192.241.213.4
192.241.213.5
192.241.213.6
192.241.213.8
192.241.213.10
192.241.213.12
192.241.213.13
192.241.213.16
192.241.213.17
192.241.213.19
192.241.213.20
192.241.213.23
192.241.213.25
192.241.213.27
192.241.213.28
192.241.213.35
192.241.213.37
192.241.213.40
192.241.213.41
192.241.213.42
192.241.213.43
192.241.213.46
192.241.213.49
192.241.213.50
192.241.213.51
192.241.213.53
192.241.213.55
192.241.213.56
192.241.214.206
192.241.220.7
192.241.229.240
192.241.236.137
```
@williamdes
Copy link

I am working on a better list.
First I think we can use a better tool to build all the Ips in the range: https://unix.stackexchange.com/a/643901/155610
Here is another project that provides a list: https://github.com/SilvrrGIT/IP-Lists/blob/master/stretchoid

@williamdes
Copy link

This data is outdated, please read https://github.com/SilvrrGIT/IP-Lists/issues/85 for more news

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment