Giter Site home page Giter Site logo

Comments (5)

mnmnc avatar mnmnc commented on July 28, 2024 1

i think you can use function __find_rows for that. It basically works as if you use REST API /case/artifact/_search endpoint. You just have to submit search path. Resulting Json will contain case Id unter _parent IIRC.

from thehive4py.

nadouani avatar nadouani commented on July 28, 2024

This will be part of the library re writing #85

from thehive4py.

nadouani avatar nadouani commented on July 28, 2024

i think you can use function __find_rows for that. It basically works as if you use REST API /case/artifact/_search endpoint. You just have to submit search path. Resulting Json will contain case Id unter _parent IIRC.

This is 100% valid.

from thehive4py.

NeilPalmere avatar NeilPalmere commented on July 28, 2024

So, using a generalized search, it would look something like:

api = TheHiveApi("https://thehive.company.com", username, password)

refinement = {"_string":"!_type:audit AND !_type:data AND !_type:user AND !_type:analyzer AND !_type:alert AND !_type:case_artifact_job_log AND !status:Deleted"}

searchTerm = 'ioc:true'

ioc_query = {
"_and": [
{"_string": searchTerm},
refinement
]
}
ioc_rows = api.__find_rows("/api/_search?nparent=10", query=ioc_query)

from thehive4py.

nadouani avatar nadouani commented on July 28, 2024

No your can directly call /api/case/artifact/_search with {"ioc":true}

ioc_query = {"ioc":true}
api.__find_rows(`/api/case/artifact/_search?nparent=1`, query=ioc_query)

from thehive4py.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.