Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
61 views

I need to apply different RPZ files based on client IP address. I load all RPZ files at startup, then try to discard policies not meant for the requesting IP, but it's not working. Will be needing ...
Suhani Patel's user avatar
0 votes
0 answers
39 views

I’m currently working on a Selenium project in Java that requires using Safari to take advantage of iCloud Private Relay’s IP shuffle functionality. After launching Safari from Selenium, I’m checking ...
Polyterpe's user avatar
0 votes
1 answer
85 views

Question: I am working on a web application with a React frontend and a NestJS backend. The backend uses Helmet to manage the Content Security Policy (CSP). My frontend needs to connect to an API ...
ZeeTix's user avatar
  • 3
0 votes
2 answers
410 views

Is anyone able to capture for component use, a client IP address, in Blazor 9 hosted in Azure? This question has been asked for several years, but for previous Blazor versions; IMHO, there isn't a ...
paultechguy's user avatar
  • 2,588
0 votes
1 answer
102 views

I have a list of IP addresses from an API call: ips = ["10.135.0.80","10.135.0.81","10.135.0.83","10.135.1.200","10.135.1.220","10.160.150.2"...
Eric's user avatar
  • 3
1 vote
1 answer
196 views

I'm attempting to develop a program that communicates between devices over the HTTP protocol. If I hardcode the active IP address of the current device (i.e., the local IPv4 address that the network's ...
simplexshotz's user avatar
0 votes
1 answer
120 views

I need to check if visitor IPv6 is in given prefix (I have some whitelisted ipv6 prefixes). I adjusted the below function using two different functions from StackOverflow (one was converting an ipv6 ...
adrianTNT's user avatar
  • 4,163
1 vote
1 answer
310 views

What's the proper way to prepare an insert statement so a String representing an IP address can be inserted into a Postgres column of 'inet' type? val rDate = LocalDateTime.parse("2018-12-29T02:...
bigswifty's user avatar
  • 155
1 vote
3 answers
64 views

Goal: Given a list of String representing IP addresses split into 4 octets by removing '.' transform split pieces by padding with zeros (if size == 1 or 2) join pieces into a 12-char String, ...
bigswifty's user avatar
  • 155
1 vote
1 answer
387 views

I want a server application to send webhooks (i.e. outgoing http-post requests) to user-controlled http(s) URLs. A naive implementation of that functionality is vulnerable to server-side request ...
CodesInChaos's user avatar
0 votes
1 answer
751 views

I'm seeing a lot of hits on my website with the following user agent: facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) I'm trying to verify whether it really is from Facebook ...
user984003's user avatar
  • 29.9k
1 vote
1 answer
998 views

Hello I am trying to fetch IP. My application is running on Microsoft Azure so remoteIpAddr and remoteHost is saving Azure Frontdoor IP. Whereas ipAddress is null .. How to fetch the Client's IP ? How ...
Wajih Haider's user avatar
0 votes
1 answer
41 views

I want clients to be denied automatic directory listings, other than those from specific ip addresses. What should I put in my virtual host conf file? I've tried <Directory "/var/www/...
twisted's user avatar
  • 812
0 votes
0 answers
109 views

I've been looking through questions and solutions to my problem (getting hostnames from a set of IPs on iOS) for a few days. Only three IP resolution methods seem to be listed for anyone, and neither ...
Afinainflowers's user avatar
0 votes
1 answer
3k views

I want to know user location and i tried multiple api but all of them are giving me wrong state and city name, if i don't provide ip address, like this api -> https://ipapi.co/json but if i pass ip ...
Pratik Kumar's user avatar
1 vote
0 answers
99 views

I am developing an android application and need to get my device's public IPV4 address to trigger an API, how can this be done. Some approaches I have tried I am sharing below fun getIPAddress(): ...
Ripped_Asssasin's user avatar
0 votes
0 answers
42 views

I have a python server running on port 8000 (the simple "python3 -m http.server") and I want to send a request with a custom ip address to it, so I wrote: from scapy.all import IP, TCP, send ...
Shoto's user avatar
  • 31
0 votes
1 answer
97 views

I'm trying to validate IP, gateway and subnet mask inputs using the ipaddress library, however I'm getting invalid results when I'm actually trying to use the validated network, which makes me think ...
user2384330's user avatar
-2 votes
1 answer
115 views

I want a quick way to check if a computer on the LAN is awake or not given its IP address (on Windows) without waking it up. I wrote the following, which works: def is_awake(ipOrName, timeout=0.05): ...
EllipticalInitial's user avatar
0 votes
0 answers
158 views

THESE ARE MY PRESENT CODES FOR GEOLOCATION (ASKING FOR PERMISSION): FOR LOCATE.HTML FILE: <!DOCTYPE html> <html> <body onload="getLocation()"> <iframe src="...
eric steel's user avatar
0 votes
1 answer
298 views

I have a docker nats-server running in WSL. docker run -d -p 4222:4222 -p 6222:6222 -p 8222:8222 --name my-nats-container nats:latest When I run my client on my host machine, it connects fine. But ...
Philly G's user avatar
0 votes
1 answer
45 views

In the distributed cluster of Apache IoTDB with 3 ConfigNodes and 3 DataNodes, how many IP addresses should I configure for the ConfigNode configuration parameter cn_target_config_node_list, and the ...
zlyf's user avatar
  • 134
0 votes
1 answer
161 views

I just try to update my existing container instance image using this command : az container create -g ressourcegroup --name sonar --image sonarqube:8.9-community --ports 9000 --location eastus --cpu ...
Faouzeya's user avatar
  • 343
0 votes
1 answer
942 views

I have the following powershell function, and I want to return the IP range from a CIDR. Here is the code: function ConvertFrom-CidrNotation { param( [Parameter(Mandatory=$true)] [...
Sotiris Sotiriou's user avatar
3 votes
1 answer
58 views

I've implemented a simple Express.js application that extracts the predomain from incoming requests' hostnames. The code seems to be functioning correctly when I use localhost:3000, but it fails when ...
Harsh Narwariya's user avatar

1
2 3 4 5
78