Peregrinus

joined 1 year ago
[โ€“] Peregrinus 21 points 11 months ago* (last edited 11 months ago) (2 children)

can't read it the without the ad blocker disabled. another site on the blocked forever list.

[โ€“] Peregrinus 1 points 1 year ago

the application that started an obsession and ultimately a career.

[โ€“] Peregrinus 13 points 1 year ago (1 children)

correct, am Australian. The mushrooms are called death cap here which are poisonous. they were used in a mea and it's suspected to be a deliberate poisoning. nothing recreational or accidental here, just the same usual shit that can kill you in Australia :)

[โ€“] Peregrinus 51 points 1 year ago (1 children)

that pump and dump scheme just needs to wrap up and fail. they failed their user base and then wondered why people left in droves. The poster boys for PFOF. needs to be banned everywhere.

[โ€“] Peregrinus 2 points 1 year ago

need a decent sized one but I liked it. nature's egg ring

[โ€“] Peregrinus 14 points 1 year ago (2 children)

call me crazy, I'm wondering if they are hoping to have automated cars by then and don't have to worry about it.

[โ€“] Peregrinus 21 points 1 year ago (2 children)

what are home fries? not trying to sound like an asshat but they look a bit soggy. is it something regional like Poutine? cheers, sorry for the ignorance.

[โ€“] Peregrinus 1 points 1 year ago

'hackernews' no black bar for Kevin mitnick. classic HN.

[โ€“] Peregrinus 3 points 1 year ago

74km/h gusts out my way near Macedon ranges.

[โ€“] Peregrinus 1 points 1 year ago

a cut of every single transactional fee on the platform and in some cases a cut of the transaction. that's all before being able to media mogul the narrative.

[โ€“] Peregrinus 7 points 1 year ago (2 children)

I think people mean regional pricing. for example in Australia this means $34. you can buy Microsoft Office for that price. I love the product and I may spend that but it's still high.

3
submitted 1 year ago* (last edited 1 year ago) by Peregrinus to c/[email protected]
 

in the spirit of the fediverse it would be good to be able to enter any Lemmy server address so the ones listed don't get hammered but to also allow people to branch out anywhere. cheers!

 

I get this is a long shot but hey, lets make some content.

I am trying to search (via mongodb commands) inside fields that contain the following example JSON content:

Each 'Details' field uses the same structure inside the collection:

[
    {
        "references": [
            "https://www.owasp.org/index.php/SQL_Injection",
            "https://cwe.mitre.org/data/definitions/89.html"
        ],
        "locale": "en",
        "title": "SQL injection is possible",
        "vulnType": "Web Application",
        "description": "<p>SQL injection (or SQLi)....</p>",
        "observation": "<p>The following endpoint and subsequent data extraction was found to be vulnerable to SQL injection:</p><p></p>",
        "remediation": "<p>The most effective way to prevent SQL....</p></li></ul>",
        "customFields": [
            {
                "customField": "631816bfcef08a001188c9d5",
                "text": "A03:2021-Injection"
            },
            {
                "customField": "631855d0cef08a001188ca0c",
                "text": ""
            },
            {
                "customField": "63198741cef08a001188ca38",
                "text": ""
            },
            {
                "customField": "638d3ff17406ad001120d10d",
                "text": "C3: Secure Database Access"
            },
            {
                "customField": "639680ce7406ad001120d196",
                "text": "Implementation"
            }
        ]
    }
]

I have tried assorted commands such as:

db.vulnerabilities.find({Details: {$regex: 'Web Application'}}
db.vulnerabilities.find({ Details: { $in: ["vulnType"]}})
db.vulnerabilities.find({ "details" : /vulnType/ }

These are shots in the dark clearly but I cant see an obvious way to look for specific strings or even json pairs. Any help would be appreciated.

view more: next โ€บ