cross-posted from: https://lemmy.nz/post/4294116

I have a file with content like this:

item({
     ["attr"] = {
        ["size"] = "62091";
        ["filename"] = "qBuUP9-OTfuzibt6PQX4-g.jpg";
        ["stamp"] = "2023-12-05T19:31:37Z";
        ["xmlns"] = "urn:xmpp:http:upload:0";
        ["content-type"] = "image/jpeg";
     };
     ["key"] = "Wa4AJWFldqRZjBozponbSLRZ";
     ["with"] = "email@address";
     ["when"] = 1701804697;
     ["name"] = "request";
});

I need to know what format this is, and if there exists a tool in linux already to parse this or if I need to write one myself?

Thanks!

@Synthead@lemmy.world
link
fedilink
English
1
edit-2
9M

deleted by creator

∟⊔⊤∦∣≶
creator
link
fedilink
19M

Not to worry; there’s definitely no sensitive information in here and it’s from a preprod environment.

(If you’re able to figure out a way to use that key field, you’re either going to get shot by the FBI or hired by the CIA.)

It is a file created that records information about files in another folder. I just want to extract some values from it. I would have expected this to be in like, xml or json. I believe the program that generated this file is written in Lua, but I don’t know Lua.

Rikudou_Sage
link
fedilink
19M

Security by obscurity is no security at all. You should really invalidate and change the key. I personally would fire you if I ever found out you leaked credentials and then did nothing about it.

∟⊔⊤∦∣≶
creator
link
fedilink
19M

This isn’t even an encryption key. It’s a unique name generated for the image. My guess is it uses the word ‘key’ because the ‘value’ is the image file.

This is also my preprod environment.

@syd@lemy.lol
link
fedilink
0
edit-2
9M

WTH is this shit? @postwatchbot@lemy.lol

lua code apparently

Almost looks like mongodb output. What’s the file extension?

∟⊔⊤∦∣≶
creator
link
fedilink
29M

It’s .list

I believe the program that generated this file is written in Lua

56!
link
fedilink
3
edit-2
9M

I think it’s just normal Lua code.

Here’s a quick json converter (based on https://stackoverflow.com/a/55575074), assuming you have lua installed:

local function to_json(obj)
    local result = {}
    for key, value in pairs(obj) do
        if type(value) == "string" then
            value = string.format("\"%s\"", value)
        elseif type(value) == "table" then
            value = to_json(value)
        end
        table.insert(result, string.format("\"%s\":%s", key, value))
    end
    return "{" .. table.concat(result, ",") .. "}"
end

function item(obj)
    print(to_json(obj))
end

dofile(arg[1])

It just defines the item function to print json, and executes the data file.

arg[1], the first command line argument, is the path to the data file:

$  lua to_json.lua path/to/datafile.list

and pipe the output to something.json or whatever else you want to do.

@Saganaki@lemmy.one
link
fedilink
1
edit-2
9M

Looks like somebody rewrote json to require brackets around keys and to require semicolons? Very likely custom.

∟⊔⊤∦∣≶
creator
link
fedilink
29M

The semi-colons threw me off… why is it not commas? Could be custom. Hope it isn’t…

Kool_Newt
link
fedilink
English
49M

WTFON

Mike
link
fedilink
1
edit-2
9M

deleted by creator

Rikudou_Sage
link
fedilink
19M

I assume the semicolons would break it.

It’s not really a standalone file format, it’s executable Lua code.

It returns a new item with the given table contents.

That syntax with the keys in square brackets is the “long-form” method of creating a new table, that’s allows the use of spaces and dashes in the key name.

https://stackoverflow.com/questions/34687498/what-is-the-function-of-square-brackets-around-table-keys-in-lua

Maybe this is the lua-equivelent of a python Pickle file?

∟⊔⊤∦∣≶
creator
link
fedilink
89M

Ohhhhh…

Ok so I just have to write a bit of Lua to utilise the file and give me the info I want.

Thanks!

assuming you run it in the right lua environment. The item function must be defined, and we’re only speculating about its return value without seeing proper docs, or the source

∟⊔⊤∦∣≶
creator
link
fedilink
59M

Item is a function?

Well actually, yeah thats kinda obvious isn’t it now I look at the whole thing.

Thats fine, I’ll just use a bit of the old sed and json it.

Aha I have avoided learning Lua yet again!

the code is constructing a table, and passing it to a function called item. But if all you need is the data, you can just remove the function call and assign the table to a variable like so: local myvar = {…}.

then you can just manipulate the table as usual.

actually those semicolons indicate this isn’t actually lua, they are invalid in table constructors afaik

∟⊔⊤∦∣≶
creator
link
fedilink
39M

Unfortunately, this sequence is repeated many many times, so I would need to do a for-each and construct a new table for each inner section…

There’s gotta be a better way. Time to read the source code and hijack whatever item() is doing.

@Jummit@lemmy.one
link
fedilink
2
edit-2
9M

This isn’t Lua code, Lua requires commas as separators for table items.

EDIT: Retracted, it seems like Lua allows this madness

Celediel
link
fedilink
69M

Lua isn’t that picky.

Wow. Seems like I will never stop learning new things about Lua.

Create a post

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person’s post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you’re posting long videos try to add in some form of tldr for those who don’t want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



  • 1 user online
  • 1 user / day
  • 1 user / week
  • 1 user / month
  • 1.11K users / 6 months
  • 1 subscriber
  • 1.21K Posts
  • 17.8K Comments
  • Modlog