blacklist

Blacklist IP database

主宰稳场 提交于 2019-12-29 18:36:20
问题 Is there an open database of blacklisted IP for the Web? With a lot of public web proxy you know... such the blacklist used by the Global blocking of Wikipedia. 回答1: The Project Honeypot provides as service called Http:BL. As an active member of Project Honeypot you can query their database of IPs that are known as email address harvesters or comment spammers. 回答2: You can use Blacklist IP Addresses Live Database from myip.ms - http://myip.ms/browse/blacklist/Blacklist_IP_Blacklist_IP

Linux-Windows10双系统安装

我的梦境 提交于 2019-12-26 21:45:28
在Windows10系统上搭建完深度学习环境用于无人驾驶中的目标检测后,想在Linux系统上再尝试一下。由于VMware虚拟机安装的Linux系统不支持物理硬件,所以需要一步到位安装一个双系统。本文介绍如何安装双系统以及装完系统后的输入法和英伟达显卡驱动配置。 1.安装双系统 详细操作参考 https://blog.csdn.net/fanxueya1322/article/details/90205143 详细操作参考 https://blog.csdn.net/lzq_103/article/details/84197486 1.1 U盘启动盘的制作 将Ubuntu系统ISO 格式镜像文件借助 Rufus工具 加载进U盘,从而将U盘制作成启动盘。 1.2 分配磁盘空间 留出磁盘空间用于安装ubuntu 系统。 这里有一个巨坑,容易误操作,把主分区转成了动态分区。动态分区的箭头处颜色为绿色,然后不支持磁盘空间分配,即没有分区的磁盘概念。就算留出100G的存储空间,在下一步(1.3)分区时,系统是检测不到这100G存储的。所以在出现系统提示 要不要转为动态磁盘 时,一定要 选择否 . 如果已经转为动态磁盘,经过多种方法的尝试,最终使用AOMEI Dynamic Disk Manager软件可以将动态磁盘转为基本磁盘。 1.3 分区 目录 建议大小 格式 描述 / 150G-200G

ubuntu修改IP地址和网关的方法

こ雲淡風輕ζ 提交于 2019-12-25 23:07:34
一、使用命令设置Ubuntu IP地址 1.修改配置文件blacklist.conf禁用IPV6 sudo vi /etc/modprobe.d/blacklist.conf 表示用vi编辑器(也可以用其他编辑器,如gedit)编辑etc文件夹下modprobe.d文件夹中blacklist.conf文档的内容。 注意:只能在root用户模式下才可以修改 在文档最后添加 blacklist ipv6 然后查看修改结果 cat /etc/modprobe.d/blacklist.conf 2.设置网卡eth0的IP地址和子网掩码 sudo ifconfig eth0 192.168.2.1 netmask 255.255.255.0 将IP地址改为:192.168.2.1,子网掩码改为:255.255.255.0 3.Ubuntu IP设置网关 sudo route add default gw 192.168.2.254 4.Ubuntu IP设置DNS 修改/etc/resolv.conf,在其中加入nameserver DNS的地址1 和 nameserver DNS的地址2 完成。 5.重启网络服务(若不行,请重启ubuntu:sudo reboot) sudo /etc/init.d/networking restart 6.查看当前IP ifconfig 二

Ajax generated content, crawling and black listing

此生再无相见时 提交于 2019-12-25 13:17:12
问题 My website uses ajax. I've got a user list page which list users in an ajax table (with paging and more information stuff...). The url of this page is : /user-list User list is created by ajax. When the user click on one user, he is redirected to a page which url is : /member/memberName So we can see here that ajax is used to generate content and not to manage navigation (with the # character). I want to detect bot to index all pages. So, in ajax I want to display an ajax table with paging

How do I know if my IP is blacklisted for Deezer API?

眉间皱痕 提交于 2019-12-24 10:46:36
问题 On my local machine, I visit the url http://api.deezer.com/2.0/search/artist?q=feeder and get the correct json data returned. On my live server, I curl the same url, and get returned the json. {"data":[],"total":0} http status code is 200, and I don't believe I've hit the rate limit, having tested on my local machine with a similar load. I can only suspect that someone else on the server (On a shared host here), has hit the API and got blacklisted, or they still respond when a rate limit is

JavaScript regex for blacklisting words [duplicate]

耗尽温柔 提交于 2019-12-22 13:56:12
问题 This question already has answers here : Regex: match everything but specific pattern (7 answers) Closed 2 years ago . I'm trying to write a regex to blacklist certain words. I'm able to create a whitelist like /^(carrots|onions|corn)$/ but how would I convert that into a blacklist? Edit: To clarify, I'm matching this blacklist against a whole string. For example "corndog" should be allowed. I want the regex equivalent of blacklistArray.indexOf(word) === -1 回答1: Use negative lookahead: ^(?!.*

How to blacklist an IP on TIdHTTPServer

不问归期 提交于 2019-12-13 04:39:26
问题 In a TIdHTTPServer component, I'd like to enable a blacklist of IP addresses to block. I'd like to make sure this is on the lowest level possible to prevent any unnecessary data streaming in from a blacklisted client. How should I intercept this server component to block an IP on the lowest level possible? This applies to both IP v4 and v6 回答1: On Indy 9, there was an event for refusing a connection before it was actually accepted. On Indy 10, it's still not implemented. If you look at

Blacklisting IP Address

你说的曾经没有我的故事 提交于 2019-12-11 05:08:51
问题 <?php if($_SERVER['REMOTE_ADDR'] != 'xx.xx.xx.xx') { header("Location: http://google.com"); } ?> Is this a good way to block certain IP addresses from accessing some folders on my windows server ? Or it can be intercepted with proxy softwares like webscarab and the originating IP address could be modified to bypass this ? 回答1: It can bypassed with any proxy with has a different IP address to the one you are blocking. You could check X-Forwarded-For (dig it out with apache_request_headers() if

How to filter incomming calls (blacklist) - no reflection

冷暖自知 提交于 2019-12-10 10:39:50
问题 I was wondering if there is a way that I can filter (block) incoming calls on Android (consider 2.1 and up). I found solutions using reflection, but it seem not to be very clean and reliable solution. Is there any standard or google recommended way to do that? UPDATE: Anyone? 回答1: use the following broadcast receiver to get the incoming phone number and compare it with the numbers that are in your created filter list @Override public void onReceive(Context context, Intent intent) { Bundle

What is whitelist and blacklist data?

孤街醉人 提交于 2019-12-06 18:35:09
问题 I was reading about development of XPCOM component. I came across these terms called whitelist data and blacklist data, I tried to find out on google but couldn't .. I do not know how its related to programming so forgive me if I placed the question at wrong place.. 回答1: White lists and black lists are two ways of filtering data. If you have a white list then you will filter in only data on the white list; if you have a black list you will filter out only data on that list. For example,