firewall

Python Firewall for Windows?

天涯浪子 提交于 2019-12-06 11:15:10
I want to write a tiny custom firewall for windows, in python. I would be very glad if someone can point me in the right direction to achieve this. I would like to have block/unblock IP and Port. 来源: https://stackoverflow.com/questions/4064561/python-firewall-for-windows

Oracle Database in Google Compute Engine

点点圈 提交于 2019-12-06 09:53:44
问题 I have installed Oracle 11g Standard Edition in a Google Compute Engine (GCE) virtual machine (Windows Server 2012 Datacenter). I have created an inbound and outbound rule for tcp:1521 in the Windows Firewall. At the same time, I have created a tcp:1521 firewall rule for GCE network. When I connect to my database using SQL Developer from localhost everything works. However, if I try to connect to the database from a remote host (also using SQL Developer) I obtained an error: Status: Failure -

Will a firewall block local TCP communication between processes?

馋奶兔 提交于 2019-12-06 06:06:20
问题 I am splitting an application into a tray application and a Windows Service and I want to use TCP to communicate between the two*. They will both be running on the same machine. My question is do firewalls block TCP communication between applications running on the same machine? I want to know whether firewalls are something I need to worry about when testing. (*note that I want to use TCP instead of named pipes for communication because the apps might one day run on separate computers but

Programmatically add an application to all profile Windows Firewall (Vista+)

泪湿孤枕 提交于 2019-12-06 01:55:48
问题 I have searched around and there are similar questions on SO, however, no one talks about how to add exception to "All Profile" (windows 7, AKA "Any Profile" on Vista/Windows Server 2008). Examples on internet talk about add to current profile only. The reason for this is I have a problem with one of my virtual machine: windows 2008 x86, current firewall profile is Domain, and my application is added to Exception list of Domain. (Firewall setting is as default: block any inbound calls that

Application with multiple executables appears signed but triggers firewall warning

喜你入骨 提交于 2019-12-06 01:34:21
I'm working on a QT app for OS X that uses multiple executables. We sign the .app by signing each executable within the .app, then signing the whole .app with the "-f" option. This is the procedure Apple recommended when we contacted them. However, each time our app starts, the user is prompted with a warning that our application wants to connect to the internet. This warning is repeated every time the application is restarted, even if the user chooses to grant it access. Any suggestions for where our process could be going wrong would be useful. For what it's worth, all executables and the

What firewall ports do I need to open to allow Sinch and WebRTC to work?

梦想的初衷 提交于 2019-12-06 00:43:09
Sinch has been working just great over the internet and various NATed networks. But I've just tried the device behind an enterprise firewall, and suddenly we can't make calls. More specifically devices can call each other, but the moment onCallEstablished is called (audio streams are connected), the calls drop out. No audio from the remote end is ever heard. It definitely only happens on this particular network. I'm assuming that this is a firewall issue, but have no idea what ports we need to have opened on this firewall to allow the voice calls? Edit: Whilst experiencing this issue, I was

enable firewall port 22 on ec2 server after disable it

孤街浪徒 提交于 2019-12-05 20:27:29
Step error: 1. sudo ufw enable 2. Command may disrupt existing ssh connections. Proceed with operation (y|n)? y 3. exit Before ssh again and can not access. On Security Group, port 22 is opening But firewall disable port 22. How to access server again? You could use the following simplest way (user-data) to turn off the ufw then access the instance and edit your firewall. stop the instance Edit the user data to disable the ufw once and let you access the instance start the instance Following is the user data: Content-Type: multipart/mixed; boundary="//" MIME-Version: 1.0 --// Content-Type:

Spring: Cannot connect to a JMX Server using RMI from behind a firewall

瘦欲@ 提交于 2019-12-05 16:17:35
My Spring application is running on a machine that is behind a NAT firewall (pfSense). The machine's internal IP is a.b.c.d , and the NAT IP is w.x.y.z The Spring configuration's serviceUrl is set to my internal IP ( a.b.c.d ) on port 1100 , and when I start the application, I provide the following switches: -Dcom.sun.management.jmxremote -Djava.rmi.server.hostname=w.x.y.z -Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false As shown above, I set -Djava.rmi.server

Why does Eclipse want incoming network connections (using OS X)?

走远了吗. 提交于 2019-12-05 14:24:25
Does anyone know why Eclipse is asking for incoming network connections? I searched around and saw mentions of Code Completion with PyDev, but I disabled code completion in PyDev, restarted, and was still prompted for incoming network connections. PyDev spawns a shell and connects to it to request information on builtin modules (besides using it to debug a process). I.e.: The shell is spawn at https://github.com/fabioz/Pydev/blob/master/plugins/org.python.pydev/src_completions/org/python/pydev/editor/codecompletion/shell/PythonShell.java and used in: https://github.com/fabioz/Pydev/blob/master

DTC firewall requirements?

倖福魔咒の 提交于 2019-12-05 13:22:11
I'm attempting to set up an environment in which a TransactionScope originating on a web server (asp.net) will flow a transaction through WCF to an application server and subsequently through to the database. Since I'm forced to use a SQL Server 2005 database, this often causes the transaction to be 'promoted' to a distributed transaction (several service calls could be wrapped in this TransactionScope), which means the Distributed Transaction Coordinator needs to be enabled. I've successfully got it working on a local box where the web server and app server are hosted on the same machine,