#EEEE

为接下来要尝试基于 Tengine 完成 CPU Fallback 的工作,在组里的 ZCU 102 开发板上进行了 NVDLA 的移植。本来以为这个过程会很顺利,没想到还是因为各种问题还是花费了一个星期的时间。

这篇文章记述了部分关于 ZCU102 rev1.1 板卡的坑点,以及利用chroot基于Ubuntu Base Rootfs来订制 aarch64 ubuntu 的文件系统流程。

Read More

1. Crack the Passwd of Zip Package

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

2. Find

  1. Find file with suid
1
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
1
find / -type f -group bugtracker 2>/dev/null
  1. Find file
1
2
# linux
find / -name "user.txt"
1
2
# powershell
Get-ChildItem -RecurseFilter user.txt

Read More

前一段时间,在NVDLA上针对MNIST、CIFAR-10、IMAGENET2012这三个数据集上,训练了lenet5、resnet-18两个网络,并在NVDLA的vp环境下编译,运行,相关的模型可以在下文下载。

而NVDLA的文档描述里写到其是支持8bit的,但是如何将浮点模型在nvdla上量化成8bit并运行官方给出的说明很少,本文记述的内容有模型量化的方法、以及修复了官方代码中的一些问题。

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

×