-
remote access
there are three computers running on a wireless network, one running damn vulnerable linux, one running windows vista (with no firewalls), and the final one running BT3. what programs should be used for the computer running BT3 to remotely access the hard drives of the two other computers? (is this even possible?)
links are appreciated otherwise i'll use our good friend google
-
Member
Assuming this is a lab you have setup and you actually own all of the computers:
If you are planning to gain access without installing any software on the others, then you could try port scanning to see if any port is open with a vulnerable daemon listening. Try using nmap -sV -p- <ipaddress>
-sV: Probe open ports to determine service/version info
-p- : Scans all ports.
With the results you could go through www.milw0rm.com database to find an appropriate exploit. You could also try the autopwn included in fast-track to try and get answers right away.
But if you are interested in actually learning I highly recommend reading about port scanning to start out with as it is usually a vital process in penetrating a computer.
Here is a place to start: http://en.wikipedia.org/wiki/Portscanning
-
samba can be used to access the computers
-
i know of various open ports on the computers (and yes they are mine) thanks for the advice
-
Ok, so you want to learn how to penetrate your computers, you know the ports that are open....what are you waiting for??
if port 22 is open, use the ssh <ip address> command to connect.
if port 139 is open, google "Hacking net-bios with linux" and get one of the tuts.
etc.......Just use the port service to your advantage.
-
bt ~ # smbclient -L mycomputer
params.c:OpenConfFile() - Unable to open configuration file "/etc/samba/smb.conf":
No such file or directory
smbclient: Can't load /etc/samba/smb.conf - run testparm to debug it
Password:
session setup failed: NT_STATUS_LOGON_FAILURE
it will not let me type anything into the password prompt, what should i do?
nevermind i got the anonymous login to work... what now?
bt ~ # smbclient -L mycomputer
params.c:OpenConfFile() - Unable to open configuration file "/etc/samba/smb.conf":
No such file or directory
smbclient: Can't load /etc/samba/smb.conf - run testparm to debug it
Password:
Anonymous login successful
Domain=[WORKGROUP] OS=[Windows Vista (TM) Home Basic 6000] Server=[Windows Vista (TM) Home Basic 6.0]
Sharename Type Comment
--------- ---- -------
cli_rpc_pipe_open: cli_nt_create failed on pipe \srvsvc to machine mycomputer Error was NT_STATUS_ACCESS_DENIED
Error returning browse list: NT_STATUS_ACCESS_DENIED
session request to mycomputer failed (Called name not present)
Anonymous login successful
Domain=[WORKGROUP] OS=[Windows Vista (TM) Home Basic 6000] Server=[Windows Vista (TM) Home Basic 6.0]
Server Comment
--------- -------
mycomputer
Workgroup Master
--------- -------
WORKGROUP
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules