Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
apps /
files_external /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
app.js
3.14
KB
-rw-r--r--
2018-04-19 18:15
gdrive.js
2.05
KB
-rw-r--r--
2018-04-19 18:15
mountsfilelist.js
3.78
KB
-rw-r--r--
2018-04-19 18:15
oauth1.js
3.49
KB
-rw-r--r--
2018-04-19 18:15
oauth2.js
2.42
KB
-rw-r--r--
2018-04-19 18:15
public_key.js
1.54
KB
-rw-r--r--
2018-04-19 18:15
rollingqueue.js
3.31
KB
-rw-r--r--
2018-04-19 18:15
settings.js
42.48
KB
-rw-r--r--
2018-04-19 18:15
statusmanager.js
19.06
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
$(document).ready(function() { function displayGranted($tr) { $tr.find('.configuration input.auth-param').attr('disabled', 'disabled').addClass('disabled-success'); } OCA.External.Settings.mountConfig.whenSelectAuthMechanism(function($tr, authMechanism, scheme, onCompletion) { if (authMechanism === 'oauth1::oauth1') { var config = $tr.find('.configuration'); config.append($(document.createElement('input')) .addClass('button auth-param') .attr('type', 'button') .attr('value', t('files_external', 'Grant access')) .attr('name', 'oauth1_grant') ); onCompletion.then(function() { var configured = $tr.find('[data-parameter="configured"]'); if ($(configured).val() == 'true') { displayGranted($tr); } else { var app_key = $tr.find('.configuration [data-parameter="app_key"]').val(); var app_secret = $tr.find('.configuration [data-parameter="app_secret"]').val(); if (app_key != '' && app_secret != '') { var pos = window.location.search.indexOf('oauth_token') + 12; var token = $tr.find('.configuration [data-parameter="token"]'); if (pos != -1 && window.location.search.substr(pos, $(token).val().length) == $(token).val()) { var token_secret = $tr.find('.configuration [data-parameter="token_secret"]'); var statusSpan = $tr.find('.status span'); statusSpan.removeClass(); statusSpan.addClass('waiting'); $.post(OC.filePath('files_external', 'ajax', 'oauth1.php'), { step: 2, app_key: app_key, app_secret: app_secret, request_token: $(token).val(), request_token_secret: $(token_secret).val() }, function(result) { if (result && result.status == 'success') { $(token).val(result.access_token); $(token_secret).val(result.access_token_secret); $(configured).val('true'); OCA.External.Settings.mountConfig.saveStorageConfig($tr, function(status) { if (status) { displayGranted($tr); } }); } else { OC.dialogs.alert(result.data.message, t('files_external', 'Error configuring OAuth1')); } }); } } } }); } }); $('#externalStorage').on('click', '[name="oauth1_grant"]', function(event) { event.preventDefault(); var tr = $(this).parent().parent(); var app_key = $(this).parent().find('[data-parameter="app_key"]').val(); var app_secret = $(this).parent().find('[data-parameter="app_secret"]').val(); if (app_key != '' && app_secret != '') { var configured = $(this).parent().find('[data-parameter="configured"]'); var token = $(this).parent().find('[data-parameter="token"]'); var token_secret = $(this).parent().find('[data-parameter="token_secret"]'); $.post(OC.filePath('files_external', 'ajax', 'oauth1.php'), { step: 1, app_key: app_key, app_secret: app_secret, callback: location.protocol + '//' + location.host + location.pathname + '?sectionid=storage' }, function(result) { if (result && result.status == 'success') { $(configured).val('false'); $(token).val(result.data.request_token); $(token_secret).val(result.data.request_token_secret); OCA.External.Settings.mountConfig.saveStorageConfig(tr, function() { window.location = result.data.url; }); } else { OC.dialogs.alert(result.data.message, t('files_external', 'Error configuring OAuth1')); } }); } else { OC.dialogs.alert( t('files_external', 'Please provide a valid app key and secret.'), t('files_external', 'Error configuring OAuth1') ); } }); });