firewall

Windows 10 | regedit | exefile shell command (firewall add rule) - not running

浪尽此生 提交于 2019-12-23 03:12:13
问题 Definitions: using windows 10/64bit firewall is blocking all in/out traffic - except added rules (allow in/out) actual user-account is administrator tested with all user-account-control (uac) settings: from always to never Problem: I have a script that worked fine with windows 7/64 bit, it adds right-click context menu items to .exe files, to add a firewall rule for them: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\exefile\shell] [HKEY_CLASSES_ROOT\exefile\shell

How to filter/sniff out web pages according to data(text) contained?

和自甴很熟 提交于 2019-12-23 02:47:05
问题 I am looking for information useful for my little project that allows me to sniff web page received from a web server and before it appear in the browser I will test the content (text),then according to this test,my program blocks(or redirects) the page in case the test is false... I found a very complete library is scapy, he can sniff and forge all the traffic including http replies.. I found someone looking to do similar things , but the response suggested to develop a proxy.. my question

Application with multiple executables appears signed but triggers firewall warning

£可爱£侵袭症+ 提交于 2019-12-22 10:28:26
问题 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

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

怎甘沉沦 提交于 2019-12-22 08:58:03
问题 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

DTC firewall requirements?

有些话、适合烂在心里 提交于 2019-12-22 08:45:03
问题 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

Windows Firewall Programming

ε祈祈猫儿з 提交于 2019-12-22 06:47:47
问题 I googled many times till I created this question, so please excuse me if there are some tutorials out there. I didn't found them. How can I code a firewall application in windows? I thought about a usermode fiewall using inline hooks in every process, but there is the problem that I can't hook csrss.exe (which creates the new processes) in windows 7. The second thing is that it's not very clean and will be detected as malware for sure. So I think that I should hook the APIs in kernel mode as

Questions about add firewall exception in wix installer by firewall extension

自古美人都是妖i 提交于 2019-12-21 17:41:45
问题 I am new to Wix installer . I am trying to add firewall exception for my program. My code is as follow: <Component Id="_VIEW.EXE" Guid="*" Transitive="yes"> <File Id="view.exe" Name="view.exe" KeyPath="yes" Source="$(var.INSTALLSOURCE)\view.exe"> <fire:FirewallException Id="view_firewall_domain_tcp" Name="View" Protocol="tcp" Scope="any" IgnoreFailure="yes" Profile="domain" /> <fire:FirewallException Id="view_firewall_domain_udp" Name="View" Protocol="udp" Scope="any" IgnoreFailure="yes"

How to open port in Win7 Firewall using Delphi

删除回忆录丶 提交于 2019-12-21 13:17:09
问题 i want to open a port in Windows 7 Firewall for port forwarding via Delphi but as been said in other threads windows 7 has Multiple Profiles in Firewall (Public, Private) and the next code only adds the exception to one of them. Code: procedure addPortToFirewall(EntryName:string;PortNumber:Cardinal); Const NET_FW_PROFILE_DOMAIN = 0; NET_FW_PROFILE_STANDARD = 1; NET_FW_IP_VERSION_ANY = 2; NET_FW_IP_PROTOCOL_UDP = 17; NET_FW_IP_PROTOCOL_TCP = 6; NET_FW_SCOPE_ALL = 0; NET_FW_SCOPE_LOCAL_SUBNET =

Installing gems from behind a corporate firewall

我们两清 提交于 2019-12-21 12:18:14
问题 I suspect that the corporate firewall is preventing gems from getting installed. I have HTTP_PROXY defined and I'm able to view remote gems via the following command: jruby -S gem list -r But when I go to install a gem, I get a 404: jruby -S gem install rails Is there a good workaround for resolving this issue other than maintaining an internal gem repository? 回答1: for ruby gems, placing this in my gem.bat this works for me @"%~dp0ruby.exe" "%~dpn0" %* --http-proxy http://domainname.ccc.com

How to authenticate on 2 different symfony2 firewalls at the same time?

99封情书 提交于 2019-12-21 12:16:22
问题 I have a Symfony application with 2 areas, one for clients accessing from a web page an other for API calls from AJAX and web services. Each one of this areas is protected with a firewall on its own. The WEB interface is authenticated with a log in form and the API with http_basic . Both firewalls work fine, but when the WEB interface makes an AJAX call to the API interface, then the browser prompts the user to log in again, even when he was already logged in (via log in form). This is what I