Looking for a solution for additionally loaded connections from an spezfic URL

GrafVonWissen

New Member
Joined
Oct 19, 2022
Messages
1
Reaction score
0
Credits
13
Hello World,

i try to check spezific webadresses what connections thay load additionll

like:
my-test-site.de
load/send additional informations from
faceb00k.de
g00gle.de
or else

how can i get this informations via shell?
i like to include this funktion in my website, any idea how i can get a solution for that?


Thanks for reading ;)
 


GrafVonWissen wrote:
i try to check spezific webadresses what connections thay load additionll
If I understand you correctly, there are several ways to collect the web addresses used on a website. One is to use the browser itself, for example if you use firefox, you can right click on a web page and choose the options "view page source" or "inspect" and the information provided on what is being referred to is there. If you wish to get the same or similar information from the command line you can do that with a text browser such as elinks:
Code:
elinks -source https://some/webpage > webpage_source
and then parse the file "webpage_source" with text processing tools to extract what you want.

A simple reveal of which other websites a particular web page is accessing is usually available from a text dump such as:
Code:
elinks -dump  https://some/webpage > webpage.txt
where the various other websites are referenced numerically throughout the page and shown at the end of it.
 
Last edited:
"The best laid schemes o' mice an' men / Gang aft a-gley." - Robert Burns
 

Members online


Top