iLightThings

Results 12 comments of iLightThings

You would need to add some logic between `yaml.safe_load(f)` and `render(context)`. Any image that is brought into the document needs to be processed first before it can be rendered. So...

Dict Object ```json { "Object": { "images": [ "path_to_image_1", "path_to_image_2", "path_to_image_3" ] } } ``` python ```python doctemplate = DocxTemplate(path_to_docx) for x in len(object["images"]): object["images"][x] = InlineImage(doctemplate , object["images"][x]) #...

Sorry about that. Out now shows the following. ``` cmedb (default)(smb) > export shares detailed a.csv "id";"computerid";"userid";"name";"remark";"read";"write" "1";"DC01";"LIGHT\administrator";"ADMIN$";"Remote Admin";"True";"True" "2";"DC01";"LIGHT\administrator";"C$";"Default share";"True";"True" "3";"DC01";"LIGHT\administrator";"DemoSystem";"";"True";"True" "4";"DC01";"LIGHT\administrator";"Materclass";"";"True";"True" "5";"DC01";"LIGHT\administrator";"NETLOGON";"Logon server share ";"True";"True" "6";"DC01";"LIGHT\administrator";"SYSVOL";"Logon server share...

Thank you! I did not know about this functionally. I will fix this within a few days.

Sorry for the delay. The function has been fixed using @maaaaz suggestions.

If you want, I can take the reigns one that. You've been a huge help showing me the inner API and I time coming up I can dedicate.

This library only supports NTLM Authentication. There is currently no way to use Kerberos authentication.

Although the ambition is great, I don't think gettgt is done in a very efficient way. From what I can read, you are checking to see if impacket is installed....

Regarding WinRM.py , RevShell.py, and File_discovery, from the looks of it, you are logging in and using powershell to run these commands. Although this might be ideal from RevShell.py, using...

https://github.com/byt3bl33d3r/OffensiveNim/pull/52 Here is my contribution if you want...