This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Goof's profile picture

getting an uploaded file and converting[Not solved]

Started by Goof, 02 April 2014 - 01:30 PM
Goof #1
Posted 02 April 2014 - 03:30 PM
Hello

Edit: New problem in latest error comment Below… :(/>/>

In my topic in the Generals section about uploading files to my own webpage, I wanted to know how to do that, I got the answer,
but I've just edited the phpcode and it turns out that when textutils.urlEncode'ing files there appears to be some

something=\'something\'
all over the code where theres " ' " or ' " '…


How can i solve this?

current code

local args={...}
if #args < 2 then
  printError("Arguments must be:")
  printError("handle , fileName")
  return
end
local getorput = args[1];
local fileName = tostring(args[2]);
local fileHandle = fs.open(fileName, "r")
local sFile = fileHandle.readAll()
fileHandle.close()
sType="program"
local site = 'http://mywebsite.com/dev/upload.php'
local respons = http.post(site, 'RESPONSETYPE='..tostring(getorput)..'&amp;POSTDATA='..textutils.urlEncode(sFile)..'&amp;POSTTYPE='..textutils.urlEncode(sType)..'&amp;POSTNAME='..fileName)
local response=respons.readAll()
response:gsub("[\']", "'") -- here i want to remove all theese \"'s and \' 's
response:gsub('[\"]', '"') -- and i figured out that i cannot put in \ and a "... How can i solve that,too?
print(response)
x = fs.open("___RESPONSE___", "w")
x.write(response)
x.close()




Thanks in advance
Edited on 04 April 2014 - 10:34 AM
apemanzilla #2
Posted 02 April 2014 - 04:52 PM
You don't need the textutils.urlEncode unless you use a GET request. And I wouldn't recommend using a GET request for something like this, so just stick with POST for now :P/>/>

So basically, use POST only, and remove the textutils.urlEncode
Edited on 02 April 2014 - 02:54 PM
Goof #3
Posted 02 April 2014 - 05:34 PM
Ohhh Okay, I will do that, and it works as it should, but….

from my website hosting provider, the following html code is generated after all responses:

<!-- Hosting24 Analytics Code -->
<script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
<!-- End Of Analytics Code -->

I tried with

local response=respons.readAll():gsub('allthatshittytext','') -- but this doesnt work...

Do you know a way to delete that code?

Thanks
Wojbie #4
Posted 02 April 2014 - 06:06 PM
Ohhh Okay, I will do that, and it works as it should, but….

from my website hosting provider, the following html code is generated after all responses:

<!-- Hosting24 Analytics Code -->
<script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
<!-- End Of Analytics Code -->

I tried with

local response=respons.readAll():gsub('allthatshittytext','') -- but this doesnt work...

Do you know a way to delete that code?

Thanks

Untested but try using this (i copied it from large project i am working on) :

local response=respons.readAll():gsub(string.gsub([[<!-- Hosting24 Analytics Code -->
<script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
<!-- End Of Analytics Code -->]],"[%^%$%(%)%%%.%[%]%*%+%-%?]",function(A) return "%"..A end),'')


Theoretically it should escape all magic characters from that text and make it a proper pattern, theoretically - works in my code but you never know.

Ofcourse thats a bit overkill but simple way escapes me - like always.
Edited on 02 April 2014 - 04:10 PM
Goof #5
Posted 02 April 2014 - 06:11 PM
doesnt work ;/

it doesnt delete that text ;(
apemanzilla #6
Posted 02 April 2014 - 06:49 PM
Use readLine and skip the first three. It doesn't look like that's something that should change often.


local line, data, i = "", "",0
while line do
  i = i + 1
  if i > 3 then
    data = data..file.readLine().."\n"
  else
    file.readLine()
  end
end
Edited on 02 April 2014 - 04:53 PM
Goof #7
Posted 02 April 2014 - 07:44 PM
ehhh what? What are you wanting to do there?

I already know the file-handling, but i dont know how to delete this:


<!-- Hosting24 Analytics Code -->
<script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
<!-- End Of Analytics Code -->
apemanzilla #8
Posted 02 April 2014 - 08:10 PM
The code above omits the first three lines which should get rid of that - assuming its at the top of the file.
Goof #9
Posted 02 April 2014 - 08:21 PM
Well its actually the opposite.. If you know. Hosting providers often post their links and all that stuffz at the bottom of the html_script, so i cant actually use your code…

But i figured an alternate way to delete it:


local response=respons.readAll():gsub('<!--(.+)','')
Wojbie #10
Posted 02 April 2014 - 08:26 PM
Facepalm. I knew i was over thinking it. :P/>
Goof #11
Posted 02 April 2014 - 08:53 PM
Btw… If i want to make a fileWriter function, which makes a file, but if the filename already exists it has to make it make a new file, but with the extension "(1)" and "(2)" etc.


how am i able to do that?

something like this?

if string.find(fileName, "([%n])") then
        fileName = fileName:gsub("([(.+)])", "")
      else
        fileName = fileName.."("..currentValue..")"
      end


– full function code:
Spoiler

local function writeFile( fileName, data )
  local currentValue = 1
  while true do
    if fs.exists( fileName ) then
      --printError("File already exists... Writing to "..fileName.."("..currentValue..")")

      if string.find(fileName, "([%n])") then
        fileName = fileName:gsub("([(.+)])", "")
      else
        fileName = fileName.."("..currentValue..")"
      end
    else
      break
    end
    currentValue = currentValue + 1
  end
  local fileHandler = fs.open( fileName, "w" )
  if fileHandler then
    local didWrite=fileHandler.write( data )
    if not didWrite then
      printError("Did not write to file! ("..fileName..")")
    end
  else
    printError("Cannot open file! ("..fileName..")")
  end
  fileHandler.close()
end

thanks in Advance
CometWolf #12
Posted 02 April 2014 - 09:09 PM
That would probably work, however i could be simplified a bit :P/>

local function saveFile(path)
  local orgLength = #path
  local curValue = 0
  while fs.exists(path) do
    curValue = curValue+1
    path = path:sub(1,orgLength).."("..curValue..")"
  end
  --savefile here
end
Goof #13
Posted 02 April 2014 - 09:53 PM
Uhhhhhh Thank you very much :D/>
you're right… it is simplified quite a bit xD

Thanks
Goof #14
Posted 03 April 2014 - 11:50 PM
The weird return problem has been encountered again…

When getting an uploaded file, all the quotes are having that "\" infront…

I dont use any textutils.urlEncode when posting anything, so im quite lost about how to solve this… :(/>

Spoiler


--  
--  Adaptation of the Secure Hashing Algorithm (SHA-244/256)
--  Found Here: http://lua-users.org/wiki/SecureHashAlgorithm
--  
--  Using an adapted version of the bit library
--  Found Here: https://bitbucket.org/Boolsheet/bslf/src/1ee664885805/bit.lua
--  

local MOD = 2^32
local MODM = MOD-1

local function memoize(f)
  local mt = {}
  local t = setmetatable({}, mt)
  function mt:__index(k)
    local v = f(k)
    t[k] = v
    return v
  end
  return t
end

local function make_bitop_uncached(t, m)
  local function bitop(a, B)/>
    local res,p = 0,1
    while a ~= 0 and b ~= 0 do
      local am, bm = a % m, b % m
      res = res + t[am][bm] * p
      a = (a - am) / m
      b = (b - bm) / m
      p = p*m
    end
    res = res + (a + B)/> * p
    return res
  end
  return bitop
end

local function make_bitop(t)
  local op1 = make_bitop_uncached(t,2^1)
  local op2 = memoize(function(a) return memoize(function(B)/> return op1(a, B)/> end) end)
  return make_bitop_uncached(op2, 2 ^ (t.n or 1))
end

local bxor1 = make_bitop({[0] = {[0] = 0,[1] = 1}, [1] = {[0] = 1, [1] = 0}, n = 4})

local function bxor(a, b, c, ...)
  local z = nil
  if b then
    a = a % MOD
    b = b % MOD
    z = bxor1(a, B)/>
    if c then z = bxor(z, c, ...) end
    return z
  elseif a then return a % MOD
  else return 0 end
end

local function band(a, b, c, ...)
  local z
  if b then
    a = a % MOD
    b = b % MOD
    z = ((a + B)/> - bxor1(a,B)/>) / 2
    if c then z = bit32_band(z, c, ...) end
    return z
  elseif a then return a % MOD
  else return MODM end
end

local function bnot(x) return (-1 - x) % MOD end

local function rshift1(a, disp)
  if disp < 0 then return lshift(a,-disp) end
  return math.floor(a % 2 ^ 32 / 2 ^ disp)
end

local function rshift(x, disp)
  if disp > 31 or disp < -31 then return 0 end
  return rshift1(x % MOD, disp)
end

local function lshift(a, disp)
  if disp < 0 then return rshift(a,-disp) end 
  return (a * 2 ^ disp) % 2 ^ 32
end

local function rrotate(x, disp)
    x = x % MOD
    disp = disp % 32
    local low = band(x, 2 ^ disp - 1)
    return rshift(x, disp) + lshift(low, 32 - disp)
end

local k = {
  0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2,
}

local function str2hexa(s)
  return (string.gsub(s, ".", function(c) return string.format("%02x", string.byte(c)) end))
end

local function num2s(l, n)
  local s = ""
  for i = 1, n do
    local rem = l % 256
    s = string.char(rem) .. s
    l = (l - rem) / 256
  end
  return s
end

local function s232num(s, i)
  local n = 0
  for i = i, i + 3 do n = n*256 + string.byte(s, i) end
  return n
end

local function preproc(msg, len)
  local extra = 64 - ((len + 9) % 64)
  len = num2s(8 * len, 8)
  msg = msg .. "\128" .. string.rep("\0", extra) .. len
  assert(#msg % 64 == 0)
  return msg
end

local function initH256(H)
  H[1] = 0x6a09e667
  H[2] = 0xbb67ae85
  H[3] = 0x3c6ef372
  H[4] = 0xa54ff53a
  H[5] = 0x510e527f
  H[6] = 0x9b05688c
  H[7] = 0x1f83d9ab
  H[8] = 0x5be0cd19
  return H
end

local function digestblock(msg, i, H)
  local w = {}
  for j = 1, 16 do w[j] = s232num(msg, i + (j - 1)*4) end
  for j = 17, 64 do
    local v = w[j - 15]
    local s0 = bxor(rrotate(v, 7), rrotate(v, 18), rshift(v, 3))
    v = w[j - 2]
    w[j] = w[j - 16] + s0 + w[j - 7] + bxor(rrotate(v, 17), rrotate(v, 19), rshift(v, 10))
  end

  local a, b, c, d, e, f, g, h = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8]
  for i = 1, 64 do
    local s0 = bxor(rrotate(a, 2), rrotate(a, 13), rrotate(a, 22))
    local maj = bxor(band(a, B)/>, band(a, c), band(b, c))
    local t2 = s0 + maj
    local s1 = bxor(rrotate(e, 6), rrotate(e, 11), rrotate(e, 25))
    local ch = bxor (band(e, f), band(bnot(e), g))
    local t1 = h + s1 + ch + k[i] + w[i]
    h, g, f, e, d, c, b, a = g, f, e, d + t1, c, b, a, t1 + t2
  end

  H[1] = band(H[1] + a)
  H[2] = band(H[2] + B)/>
  H[3] = band(H[3] + c)
  H[4] = band(H[4] + d)
  H[5] = band(H[5] + e)
  H[6] = band(H[6] + f)
  H[7] = band(H[7] + g)
  H[8] = band(H[8] + h)
end

local function sha256(msg)
  msg = preproc(msg, #msg)
  local H = initH256({})
  for i = 1, #msg, 64 do digestblock(msg, i, H) end
  return str2hexa(num2s(H[1], 4) .. num2s(H[2], 4) .. num2s(H[3], 4) .. num2s(H[4], 4) .. num2s(H[5], 4) .. num2s(H[6], 4) .. num2s(H[7], 4) .. num2s(H[8], 4))
end
local authentification="auth="..sha256("somethingpasswordwhichishiddeninthistext").."&amp;"

local args={...}
local site = "http://dontlookatmywebsite.somedomain/dev/upload.php"
if args[1] == "wget" then
  local response = http.post(site, authentification.."RESPONSETYPE=dir").readAll():gsub("<!--(.+)","")
  write(response)
else

    --printError("Arguments must be:")
    --printError("handle , type, fileName")
    --coroutine.yield("mouse_click")

  local function readFile( fileName )
    if not fs.exists( fileName ) then
      printError("File does not exist!")
    else
      local fileHandler = fs.open( fileName , "r" )
      if fileHandler then
        local returnFile = fileHandler.readAll()
        if not returnFile then
          printError("Could not read filename")
          return false
        end
        return returnFile
      else
        printError("Could not read/open file")
        return false
      end
      fileHandler.close()
    end
    return false
  end
  local function writeFile( fileName, data )
    local orgLength = #fileName
    local curValue = 0
    while fs.exists(fileName) do
      curValue = curValue+1
      fileName = fileName:sub(1,orgLength).."("..curValue..")"
    end
    local fileHandler = fs.open( fileName, "w" )
    if fileHandler then
      local didWrite=fileHandler.write( data )
      if not didWrite then
        printError("Did not write to file! ("..fileName..")")
      end
    else
      printError("Cannot open file! ("..fileName..")")
    end
    fileHandler.close()
  end
  local function colorPrint(...)
    local curColor
    for i=1, #arg do -- arg is ...
      if type(arg[i]) == "number" then
        curColor = arg[i]
      else
        if curColor and term.isColor() then
          term.setTextColor(curColor)
        end
        term.write(arg[i])
      end
    end
    print()
  end
  local handle = args[1];
  local sType = args[2];
  local fileName = args[3];
  local outputFile = args[4];
  local sFile = "Not read yet!"

  colorPrint( colors.yellow, "Filename: ", colors.lime, fileName )
  colorPrint( colors.yellow, "Type: ", colors.lime, sType )
  colorPrint( colors.yellow, "Handle: ", colors.lime, handle )
  print()
  if handle == "put" then
    sFile = readFile( fileName )
    --print( sFile )
    colorPrint( colors.yellow, "Uploading file to website...")
    local respons = http.post( site, authentification.."RESPONSETYPE="..tostring( handle ).."&amp;POSTDATA="..( sFile ).."&amp;POSTTYPE="..tostring( sType ).."&amp;POSTNAME="..tostring( fileName ) )
    local response=respons.readAll():gsub("<!--(.+)","")
    if string.find( response, "Done!" ) then
      colorPrint( colors.lime, "Uploaded!" )
    elseif string.find( response, "File already exists!" ) then
      colorPrint( colors.red, "File already exists!")
    else
      colorPrint( colors.yellow, response )
    end
    x = fs.open("___RESPONSE___", "w")
    x.write( response )
    x.close()
  elseif handle == "get" then  --- here, when getting the file, all the quotes are being differnet.. ( maybe this is serverside on my website? )
    colorPrint( colors.yellow, "Downloading file...")
    local respons = http.post( site, authentification.."RESPONSETYPE=get&amp;POSTDATA=".. tostring( sFile ).. "&amp;POSTTYPE=".. tostring( sType ).. "&amp;POSTNAME=".. tostring( fileName ) )
    local response=respons.readAll():gsub("<!--(.+)","")
    writeFile( outputFile or fileName, response )
    colorPrint( colors.lime, "Downloaded!" )
  elseif handle == "del" then
    colorPrint( colors.red, "Deleting file from server...")
    local respons = http.post( site, authentification.."RESPONSETYPE=del&amp;POSTNAME=".. tostring( fileName ).. "&amp;POSTTYPE=".. tostring( sType ) )
    local response= respons.readAll():gsub("<!--(.+)","")
    --writeFile( "response_report", response )
    if string.find( response, "Done!" ) then
      colorPrint( colors.lime, "File deleted!" )
    else
      colorPrint( colors.yellow, response )
    end
  end
end

Php code can be shown from the website, if wished…

Thanks in advance
apemanzilla #15
Posted 04 April 2014 - 01:37 PM
The weird return problem has been encountered again…

When getting an uploaded file, all the quotes are having that "\" infront…

I dont use any textutils.urlEncode when posting anything, so im quite lost about how to solve this… :(/>/>

Spoiler


--  
--  Adaptation of the Secure Hashing Algorithm (SHA-244/256)
--  Found Here: http://lua-users.org/wiki/SecureHashAlgorithm
--  
--  Using an adapted version of the bit library
--  Found Here: https://bitbucket.org/Boolsheet/bslf/src/1ee664885805/bit.lua
--  

local MOD = 2^32
local MODM = MOD-1

local function memoize(f)
  local mt = {}
  local t = setmetatable({}, mt)
  function mt:__index(k)
    local v = f(k)
    t[k] = v
    return v
  end
  return t
end

local function make_bitop_uncached(t, m)
  local function bitop(a, B)/>/>
    local res,p = 0,1
    while a ~= 0 and b ~= 0 do
      local am, bm = a % m, b % m
      res = res + t[am][bm] * p
      a = (a - am) / m
      b = (b - bm) / m
      p = p*m
    end
    res = res + (a + B)/>/> * p
    return res
  end
  return bitop
end

local function make_bitop(t)
  local op1 = make_bitop_uncached(t,2^1)
  local op2 = memoize(function(a) return memoize(function(B)/>/> return op1(a, B)/>/> end) end)
  return make_bitop_uncached(op2, 2 ^ (t.n or 1))
end

local bxor1 = make_bitop({[0] = {[0] = 0,[1] = 1}, [1] = {[0] = 1, [1] = 0}, n = 4})

local function bxor(a, b, c, ...)
  local z = nil
  if b then
    a = a % MOD
    b = b % MOD
    z = bxor1(a, B)/>/>
    if c then z = bxor(z, c, ...) end
    return z
  elseif a then return a % MOD
  else return 0 end
end

local function band(a, b, c, ...)
  local z
  if b then
    a = a % MOD
    b = b % MOD
    z = ((a + B)/>/> - bxor1(a,B)/>/>) / 2
    if c then z = bit32_band(z, c, ...) end
    return z
  elseif a then return a % MOD
  else return MODM end
end

local function bnot(x) return (-1 - x) % MOD end

local function rshift1(a, disp)
  if disp < 0 then return lshift(a,-disp) end
  return math.floor(a % 2 ^ 32 / 2 ^ disp)
end

local function rshift(x, disp)
  if disp > 31 or disp < -31 then return 0 end
  return rshift1(x % MOD, disp)
end

local function lshift(a, disp)
  if disp < 0 then return rshift(a,-disp) end 
  return (a * 2 ^ disp) % 2 ^ 32
end

local function rrotate(x, disp)
    x = x % MOD
    disp = disp % 32
    local low = band(x, 2 ^ disp - 1)
    return rshift(x, disp) + lshift(low, 32 - disp)
end

local k = {
  0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2,
}

local function str2hexa(s)
  return (string.gsub(s, ".", function(c) return string.format("%02x", string.byte(c)) end))
end

local function num2s(l, n)
  local s = ""
  for i = 1, n do
    local rem = l % 256
    s = string.char(rem) .. s
    l = (l - rem) / 256
  end
  return s
end

local function s232num(s, i)
  local n = 0
  for i = i, i + 3 do n = n*256 + string.byte(s, i) end
  return n
end

local function preproc(msg, len)
  local extra = 64 - ((len + 9) % 64)
  len = num2s(8 * len, 8)
  msg = msg .. "\128" .. string.rep("\0", extra) .. len
  assert(#msg % 64 == 0)
  return msg
end

local function initH256(H)
  H[1] = 0x6a09e667
  H[2] = 0xbb67ae85
  H[3] = 0x3c6ef372
  H[4] = 0xa54ff53a
  H[5] = 0x510e527f
  H[6] = 0x9b05688c
  H[7] = 0x1f83d9ab
  H[8] = 0x5be0cd19
  return H
end

local function digestblock(msg, i, H)
  local w = {}
  for j = 1, 16 do w[j] = s232num(msg, i + (j - 1)*4) end
  for j = 17, 64 do
    local v = w[j - 15]
    local s0 = bxor(rrotate(v, 7), rrotate(v, 18), rshift(v, 3))
    v = w[j - 2]
    w[j] = w[j - 16] + s0 + w[j - 7] + bxor(rrotate(v, 17), rrotate(v, 19), rshift(v, 10))
  end

  local a, b, c, d, e, f, g, h = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8]
  for i = 1, 64 do
    local s0 = bxor(rrotate(a, 2), rrotate(a, 13), rrotate(a, 22))
    local maj = bxor(band(a, B)/>/>, band(a, c), band(b, c))
    local t2 = s0 + maj
    local s1 = bxor(rrotate(e, 6), rrotate(e, 11), rrotate(e, 25))
    local ch = bxor (band(e, f), band(bnot(e), g))
    local t1 = h + s1 + ch + k[i] + w[i]
    h, g, f, e, d, c, b, a = g, f, e, d + t1, c, b, a, t1 + t2
  end

  H[1] = band(H[1] + a)
  H[2] = band(H[2] + B)/>/>
  H[3] = band(H[3] + c)
  H[4] = band(H[4] + d)
  H[5] = band(H[5] + e)
  H[6] = band(H[6] + f)
  H[7] = band(H[7] + g)
  H[8] = band(H[8] + h)
end

local function sha256(msg)
  msg = preproc(msg, #msg)
  local H = initH256({})
  for i = 1, #msg, 64 do digestblock(msg, i, H) end
  return str2hexa(num2s(H[1], 4) .. num2s(H[2], 4) .. num2s(H[3], 4) .. num2s(H[4], 4) .. num2s(H[5], 4) .. num2s(H[6], 4) .. num2s(H[7], 4) .. num2s(H[8], 4))
end
local authentification="auth="..sha256("somethingpasswordwhichishiddeninthistext").."&amp;"

local args={...}
local site = "http://dontlookatmywebsite.somedomain/dev/upload.php"
if args[1] == "wget" then
  local response = http.post(site, authentification.."RESPONSETYPE=dir").readAll():gsub("<!--(.+)","")
  write(response)
else

    --printError("Arguments must be:")
    --printError("handle , type, fileName")
    --coroutine.yield("mouse_click")

  local function readFile( fileName )
    if not fs.exists( fileName ) then
      printError("File does not exist!")
    else
      local fileHandler = fs.open( fileName , "r" )
      if fileHandler then
        local returnFile = fileHandler.readAll()
        if not returnFile then
          printError("Could not read filename")
          return false
        end
        return returnFile
      else
        printError("Could not read/open file")
        return false
      end
      fileHandler.close()
    end
    return false
  end
  local function writeFile( fileName, data )
    local orgLength = #fileName
    local curValue = 0
    while fs.exists(fileName) do
      curValue = curValue+1
      fileName = fileName:sub(1,orgLength).."("..curValue..")"
    end
    local fileHandler = fs.open( fileName, "w" )
    if fileHandler then
      local didWrite=fileHandler.write( data )
      if not didWrite then
        printError("Did not write to file! ("..fileName..")")
      end
    else
      printError("Cannot open file! ("..fileName..")")
    end
    fileHandler.close()
  end
  local function colorPrint(...)
    local curColor
    for i=1, #arg do -- arg is ...
      if type(arg[i]) == "number" then
        curColor = arg[i]
      else
        if curColor and term.isColor() then
          term.setTextColor(curColor)
        end
        term.write(arg[i])
      end
    end
    print()
  end
  local handle = args[1];
  local sType = args[2];
  local fileName = args[3];
  local outputFile = args[4];
  local sFile = "Not read yet!"

  colorPrint( colors.yellow, "Filename: ", colors.lime, fileName )
  colorPrint( colors.yellow, "Type: ", colors.lime, sType )
  colorPrint( colors.yellow, "Handle: ", colors.lime, handle )
  print()
  if handle == "put" then
    sFile = readFile( fileName )
    --print( sFile )
    colorPrint( colors.yellow, "Uploading file to website...")
    local respons = http.post( site, authentification.."RESPONSETYPE="..tostring( handle ).."&amp;POSTDATA="..( sFile ).."&amp;POSTTYPE="..tostring( sType ).."&amp;POSTNAME="..tostring( fileName ) )
    local response=respons.readAll():gsub("<!--(.+)","")
    if string.find( response, "Done!" ) then
      colorPrint( colors.lime, "Uploaded!" )
    elseif string.find( response, "File already exists!" ) then
      colorPrint( colors.red, "File already exists!")
    else
      colorPrint( colors.yellow, response )
    end
    x = fs.open("___RESPONSE___", "w")
    x.write( response )
    x.close()
  elseif handle == "get" then  --- here, when getting the file, all the quotes are being differnet.. ( maybe this is serverside on my website? )
    colorPrint( colors.yellow, "Downloading file...")
    local respons = http.post( site, authentification.."RESPONSETYPE=get&amp;POSTDATA=".. tostring( sFile ).. "&amp;POSTTYPE=".. tostring( sType ).. "&amp;POSTNAME=".. tostring( fileName ) )
    local response=respons.readAll():gsub("<!--(.+)","")
    writeFile( outputFile or fileName, response )
    colorPrint( colors.lime, "Downloaded!" )
  elseif handle == "del" then
    colorPrint( colors.red, "Deleting file from server...")
    local respons = http.post( site, authentification.."RESPONSETYPE=del&amp;POSTNAME=".. tostring( fileName ).. "&amp;POSTTYPE=".. tostring( sType ) )
    local response= respons.readAll():gsub("<!--(.+)","")
    --writeFile( "response_report", response )
    if string.find( response, "Done!" ) then
      colorPrint( colors.lime, "File deleted!" )
    else
      colorPrint( colors.yellow, response )
    end
  end
end

Php code can be shown from the website, if wished…

Thanks in advance
At this point, it is likely the PHP adding escapes to special characters.
Goof #16
Posted 04 April 2014 - 01:45 PM
Is there a way i can fix that, because on Pastbin such things doesn't occour…

php code:
– removed authcode
Spoiler

<!--?php
  $secure_hash_auth=$_POST["auth"];
  $authCode=hash("md5", "AUTHCODEISNOTOFFICIALANDITWILLNEVERBE");
  if($secure_hash_auth!=$authCode){
	echo "ACCESS DENIED \n";
	echo "You did not enter this site with an authorized authentification code!\n";
	echo "Please leave this site!";
  } else{
	$postresptype=$_POST["RESPONSETYPE"] or "put";
	$postdata=$_POST["POSTDATA"] or "error_loading_postdata_ERROR!";
	$posttype=$_POST["POSTTYPE"] or "other";
	$postname=$_POST["POSTNAME"] or "error_getting_postname!";

	$currentPath=$_SERVER["PHP_SELF"];
	$endPath="files/" . $posttype . "/" . $postname;
	if($postresptype=="put") {
	  if(!file_exists($endPath)) {
		touch($endPath) or die("Touch_error");
	  } else {
		die("File already exists!");
	  }
	  file_put_contents($endPath, $postdata) or die("ERROR putting data into file!");
	  $response="Done!";
	} elseif($postresptype=="get") {
	  if(!file_exists($endPath)) {
		echo "File does not exist!";
	  } else {
		$response=file_get_contents($endPath);
	  }
	} elseif($postresptype=="del") {
	  if(!file_exists($endPath)) {
		echo "File does not exist!";
	  } else {
		$response=unlink($endPath);
		if($response=="1") {
		  $response="Done!";
		} else{
		  $response="Failed!";
		}
	  }
	} elseif($postresptype=="dir") {
	  $fileList_files=scandir("files");
	  $fileList_api=scandir("files/api");
	  $fileList_program=scandir("files/program");
	  $fileList_other=scandir("files/other");
	  foreach ($fileList_files as $key) {
		if($key==".") {

		} elseif($key=="..") {

		} else {
		  $result="/files/".$key . "\n";
		  echo $result;
		}
	  }
	  foreach ($fileList_api as $key) {
		if($key==".") {

		} elseif($key=="..") {

		} else {
		  $result="/files/api/".$key . "\n";
		  echo $result;
		}
	  }
	  foreach ($fileList_program as $key) {
		if($key==".") {

		} elseif($key=="..") {

		} else {
		  $result="/files/program/".$key . "\n";
		  echo $result;
		}
	  }
	  foreach ($fileList_other as $key) {
		if($key==".") {

		} elseif($key=="..") {

		} else {
		  $result="/files/other/".$key . "\n";
		  echo $result;
		}
	  }
	}
	print_r( $response );
  }
?-->

pastebin?

Thanks :D/>
Edited on 04 April 2014 - 11:46 AM