#Digilal Design

前言

NVDLA的软件栈主要分为两个部分:CompilerRuntime,由于Compiler与硬件无关,所以可以在我们自己的开发机器上编译运行调试,理解起来也较为方便;而Runtime与硬件有关,调试非常困难,官方提供的预构建的文件又都是针对64位ARM/RISC的操作系统,这对没有合适的板卡,即仅搭载了32位处理器的ZYNQ 7000系列的开发板上编译Runtime带来了很多难以解决的问题。

Loadable文件是两者之间通信的媒介,本文记述一下Loadable文件的组织结构和解析方法,既然不能吃官方给的饭,那么可以试一试自己在SOC上做一份调度的算法,解读Loadable文件就是第一步。

Github Repo:https://github.com/LeiWang1999/nvdla-parser

Read More

1. Crack the Passwd of Zip Package

zip2john backup.zip > passwd.txt
john passwd.txt

2. Find

  1. Find file with suid
find / -perm -u=s 2>/dev/null

If we got it ,we can go to GTFobins to check out whether it is possible for Privilege Escalation

  1. Find file for special group
find / -type f -group bugtracker 2>/dev/null
  1. Find file
# linux
find / -name "user.txt"
# powershell
Get-ChildItem  -Recurse –Filter user.txt

Read More

从TensorRT看INT8量化原理

https://www.cnblogs.com/nanmi/p/13607515.html

Kali Linux信息收集之enum4linux

https://www.ctolib.com/topics-82798.html

Linux提权(持续更新)

https://blog.csdn.net/anan2175/article/details/102122134

c++11以正确的姿势输出enum class的值

https://blog.csdn.net/lianshaohua/article/details/109358626

使用正则表达式判断二进制数字是否能被3整除

http://blog.2baxb.me/archives/588

Basic Linux Privilege Escalation

https://blog.g0tmi1k.com/2011/08/basic-linux-privilege-escalation/

Read More

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×