当前位置:网站首页>For penetration testing methods where the output point is a timestamp (take Oracle database as an example)
For penetration testing methods where the output point is a timestamp (take Oracle database as an example)
2022-07-31 05:53:00 【not used to having you】
Note: For technical discussion only, do not use for other purposes, all consequences have nothing to do with me.
Workaround:
1. Blinds
2. Try error injection
and 1=ctxsys.drithsx.sn(1,(select banner from sys.v_$version where rownum=1))
3. Try to convert type
to_nchar is converted to varchar or varchar2 type
Usage to_nchar(table_name)
and 1=2 union select null,null,to_nchar(table_name),null from user_tables
4. Convert characters to numbers through functions
Cut the string, turn the number to see the echo
Due to the word count requirement, I looked at some other error reporting functions
1.UTL_INADDR.get_host_address environment IP address
Specific usage: select UTL_INADDR.get_host_address('www.qq.com') from dual;
2.UTL_INADDR.get_host_name returns the hostname in the environment
Specific usage:
Returns the hostname of the specified IP address in the LAN
select UTL_INADDR.get_host_name('192.168.0.156') from dual;
Returns the URL of the specified IP address in intrenet
select UTL_INADDR.get_host_name('219.153.50.84') from dual;
You can view related contentOracle fault injectionFunction_Brother Xiaoming's technical blog_51CTO Blog
边栏推荐
猜你喜欢
随机推荐
字符串的扩展
vulhub靶场学习日记SickOs1.2
leetcode-1833. 雪糕的最大数量(排序+贪心)
gin框架学习-GORM框架进阶之CRUD接口(数据库增删改查操作)
【云原生】原来2020.0.X版本开始的OpenFeign底层不再使用Ribbon了
Redis:简单实用
Redis管道技术/分区
10 【高度塌陷与BFC】
[Cloud native] Open source data analysis SPL easily copes with T+0
小白学爬虫——爬虫入门
MySQL分页查询的5种方法
leetcode-每日一题剑指 Offer II 041. 滑动窗口的平均值(队列模拟)
leetcode-每日一题1217. 玩筹码(贪心+位运算)
Regular Expression Basics
leetcode-438. 找到字符串中所有字母异位词(滑动窗口)
MySQL高级SQL语句(二)
uni-app进阶之模版语法与数据绑定【day7】
02 【el和data的两种写法 MVVM模型】
带你搞懂MySQL隔离级别,两个事务同时操作同一行数据会怎样?
Detailed explanation of pointers in C language