Author Topic: Access files from a lan server via internet  (Read 892 times)

0 Members and 1 Guest are viewing this topic.

Offline agentvj

  • NULL
  • Posts: 3
  • Cookies: -4
    • View Profile
Access files from a lan server via internet
« on: October 10, 2014, 07:05:30 pm »
hi.. in my college they maintain a central file access system.. ie,every files on the server is available to all PCs.. i have the administrator rights to access admin account.. so i need to know whether these files can be accessed by me from my home pc,since that server is also connected to internet and i have the admin rights
any hope??

i need to do it anonymously...no detection of me doing this should happen....
« Last Edit: October 10, 2014, 08:28:19 pm by Kulverstukas »

Offline 0E 800

  • Not a VIP
  • VIP
  • Baron
  • *
  • Posts: 895
  • Cookies: 131
  • • тнε ιηтεяηεт ιs мү яεcүcℓε-вιη •
    • View Profile
Re: Access files from a lan server via internet
« Reply #1 on: October 10, 2014, 08:26:27 pm »
good luck with anonymity part.

for quick and easy, put srvdir.exe in the folder you want to have access to and run it.
copy down the link it gives you
go home and you will have access.
close the program when you want to close the access.
email the link to anyone you want to have access to.

the developer is really nice and will answer questions.
https://www.srvdir.net/
The invariable mark of wisdom is to see the miraculous in the common.

Offline kenjoe41

  • Symphorophiliac Programmer
  • Administrator
  • Baron
  • *
  • Posts: 990
  • Cookies: 224
    • View Profile
Re: Access files from a lan server via internet
« Reply #2 on: October 10, 2014, 08:44:43 pm »
1. SSH to the server
2.Since we are talking alittle anonymity, python would do the charm since they can't see most of the activity except that you spawned a python instance; most of all the stuff will be attributed to python but your remote connection might not be easily hidden:

Solution a:
Code: (python) [Select]
python -m SimpleHTTPServerThis should be in the root dir you want to serve.
solution b:I am only giving you this because you are gonna come back complaining of slow speed. Let us try twisted
Code: (shell) [Select]
twistd -no web --path=.
3.The http server of node.js is alot faster and might more convenient for you.
Code: (sh) [Select]
npm install http-server -g
http-server [path] [options]
//to serve current dir
http-server -p 8000

But i haven't done lot of networking lately, i might be wrong in some instances but you never mentioned security and login.

This is a quick easy go code to do just what you want.
Code: (go) [Select]
package main

import (
    "fmt"; "log"; "net/http"
)

func main() {
    fmt.Println("Serving files in the current directory on port 8080")
    http.Handle("/", http.FileServer(http.Dir(".")))
    err := http.ListenAndServe(":8080", nil)
    if err != nil {
        log.Fatal("ListenAndServe: ", err)
    }
}
go fmt wouldn't have allowed that formatting but just running will serve the current dir
Code: (sh) [Select]
go run hhtp-server.go
If you can't explain it to a 6 year old, you don't understand it yourself.
http://upload.alpha.evilzone.org/index.php?page=img&img=GwkGGneGR7Pl222zVGmNTjerkhkYNGtBuiYXkpyNv4ScOAWQu0-Y8[<NgGw/hsq]>EvbQrOrousk[/img]

Offline StarLord

  • /dev/null
  • *
  • Posts: 9
  • Cookies: 0
    • View Profile
Re: Access files from a lan server via internet
« Reply #3 on: October 11, 2014, 02:58:12 am »
Here are my thoughts 

1. Your wanting to become anonymous so no one can find you
well  the best bet honestly if i was you  ----  i would setup up a VPN thing within the local schools computer systems   -   And then you can just connect to the VPN and  be  on there Local IP address  which means you can also bypass security - Firewalls  -  OR  you can  login to a SSH server( which is also on there  internet ) and  just tunnel in  that way you  are still behind there ip 's

Also  honestly colleges  wont have  Goverment  Software to track down hackers and more then likely will hire some r-tard  - So  i hate to say this but you should use TOR - i fucking hate tor but anyways 

at least you will be circuiting through  millions of nodes and your ip changes every couple minutes

 
-----------------------------------------

If you have access to administrator rights -   Wouldnt they keep  login times for every admin?

have you secured your self that way?



just remember  if you dont know what your doing - Dont do it -  more then likely  you will get cought

i personally wouldnt acces  the    server from your local PC  -  as the School will see its a outsider and  it will bring more attention

If they see its a local ip within there network they will just think its another  admin  or better yet  try and gain access to that person PC the  admin you got    - and  setup a  VPN on that  some type of tunnel to connect to him  - and then you can use TOR  +  VPN  IP  +  Same IP login as the Sys Admin  =    l337ness

also schools   keep your mac address
You dont change that your still fucked cause you can change your ip all you want  but  the school records all ips + mac address  you change the ip  they still got your login time : and your mac and probably can identify the system cause of there topolgraphy graph or however you spell it over the network
« Last Edit: October 11, 2014, 03:05:04 am by StarLord »

Offline Architect

  • Sir
  • ***
  • Posts: 428
  • Cookies: 56
  • STFU
    • View Profile
    • Rootd IRC
Re: Access files from a lan server via internet
« Reply #4 on: October 11, 2014, 03:56:34 am »
Honestly could've simply Google'd this but:

SCP a connect back shell such as sshtrix, after RTFM.
Then you should be able to have backdoor file access and more.

Offline agentvj

  • NULL
  • Posts: 3
  • Cookies: -4
    • View Profile
Re: Access files from a lan server via internet
« Reply #5 on: October 11, 2014, 07:20:03 am »
thanks all.. let me try the methods you told...


Offline Architect

  • Sir
  • ***
  • Posts: 428
  • Cookies: 56
  • STFU
    • View Profile
    • Rootd IRC
Re: Access files from a lan server via internet
« Reply #6 on: October 11, 2014, 09:34:18 am »
He said he had admin access but never said anything about SSH access.

Offline agentvj

  • NULL
  • Posts: 3
  • Cookies: -4
    • View Profile
Re: Access files from a lan server via internet
« Reply #7 on: October 11, 2014, 03:31:36 pm »
i am able to access the admin account from any pc.. no probs.. bt i am nt sure abot other things like ssh,vpn etc etc...

how to use this application srvdir...any body pls help to use it... i dont know anything abt it...its website is https://www.srvdir.net have provided some steps ther..by i cant understand anything... pls help

« Last Edit: October 11, 2014, 06:47:38 pm by agentvj »