OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
fiddle
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
closure.rb
1.21 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
cparser.rb
6.05 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
function.rb
323 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
import.rb
8.68 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
pack.rb
2.94 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
struct.rb
6.35 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
types.rb
1.87 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
value.rb
2.62 KB
05/15/2023 11:41:43 AM
rw-r--r--
Editing: function.rb
Close
# frozen_string_literal: true module Fiddle class Function # The ABI of the Function. attr_reader :abi # The address of this function attr_reader :ptr # The name of this function attr_reader :name # The integer memory location of this function def to_i ptr.to_i end end end