This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# coding: utf-8 | |
import sys, xmpp, os, signal, time, re, commands, requests, json | |
reload(sys) | |
sys.setdefaultencoding("utf-8") | |
def messageCB(conn,msg): | |
mess=str(msg.getBody()) | |
rec=str(msg.getFrom()) | |
rec0=rec.split('/')[0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib2, requests, json, sys | |
reload(sys) | |
sys.setdefaultencoding("utf-8") | |
r=requests.get('https://graph.facebook.com/me/friends?access_token=CAAAAAITEghMBALwFqDAZBkD7ptrp00ZBoLVWavPBd736XH8bekkuv7y9UYjyoAQFVjIZB7cXkQbnC4uLrc8XjAZAHAonohN339yFTkA2QhkcTqhP9Br1d1HLbt4HXLclHAWyjqEinnLrJpDTTcXFhFZBZCftBzoTkZD') | |
users = r.json() | |
i=0 | |
for user in users['data']: | |
print '############ User ############' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib2 | |
import urllib | |
from cookielib import CookieJar | |
from xml.dom.minidom import parseString | |
cj = CookieJar() | |
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) | |
response = opener.open("http://192.168.1.100/astmanager/asterisk/mxml?action=login&username=user&secret=senha") | |
var = response.read() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(document).ready(function(){ | |
function poll() { | |
$.ajax({ | |
method: "get", | |
url: "initial/gera_zip", | |
dataType: "json", | |
success: function(lista){ | |
for(var i=0, l=lista.length; i<l; i++){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def read_xml(): | |
cj = CookieJar() | |
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) | |
opener.open("http://192.168.1.100/astmanager/asterisk/mxml?action=login&username=admanager&secret=ad9898") | |
tree = ElementTree(file=opener.open('http://192.168.1.100/astmanager/asterisk/mxml?action=queuestatus')) | |
#print tree | |
r = tree.getroot() | |
#print r |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
######################################################################### | |
## Database initialization | |
######################################################################### | |
from images import THUMB #use PIL to create the photo thumb | |
from widgets import Radio, Upload, Checkbox | |
from customvalidators import IS_EMPTY_OR_MASK_OR | |
auth.settings.hmac_key = G.auth.security_key # before define_tables() | |
#auth table |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//varialvel_json={"load": {"l2": 1.07, "l3": 0.83, "l1": 0.83}, "discos": {"/": {"used": 21804589056, "percent": 28.5, "free": 50897387520, "fstype": "ext4", "device": "/dev/sda5", "total": 76617515008}}, "memory": {"virtual_memory": {"used": 3819962368, "cached": 1232351232, "percent": 60.5, "free": 289218560, "total": 4109180928, "buffers": 100450304}, "swap_memory": {"total": 2048913408, "percent": 0.0, "free": 2048913408, "used": 0}}} | |
function poll() { //poll | |
$.ajax({ | |
method: "get", | |
url: "{{=URL(a='projeto', c='initial', f='consulta_server')}}", | |
dataType: "json", | |
success: function(lista){ //success | |
//alert(lista['memory']['virtual_memory']['used']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --data "[email protected]&senha=1234" http://127.0.0.1:8000/admanager/crm/login_crm | |
curl --data "[email protected]&senha=1234" -X GET http://127.0.0.1:8000/admanager/crm/login_crm | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import iplib | |
ips = ["10.4.4.6", "10.4.4.250", "10.4.4.100", "10.4.4.5", "10.4.4.25"] | |
def ip_compare(x, y): | |
""" Compare two IP addresses. """ | |
# Convert IP addresses to decimal for easy comparison | |
dec_x = int(iplib.convert(x, "dec")) | |
dec_y = int(iplib.convert(y, "dec")) | |
if dec_x > dec_y: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pysnmp.entity.rfc3413.oneliner import cmdgen | |
cmdGen = cmdgen.CommandGenerator() | |
def gera_snmp(var): | |
errorIndication, errorStatus, errorIndex, varBinds = cmdGen.getCmd( | |
cmdgen.CommunityData('public'), | |
cmdgen.UdpTransportTarget(('localhost', 161)), | |
var |
OlderNewer