summaryrefslogtreecommitdiffstats
path: root/source/include
Commit message (Collapse)AuthorAgeFilesLines
...
* added yet another rpcclient command: svcstart <service name> [arg0] [arg1] ...Luke Leighton1999-10-312-2/+11
| | | | | | | | | works with command-line completion on the service name (ohh yesss, this is becoming my favourite bit of functionality-on-the-side hee hee :) had to fix the svc_io_q_start_service() code which was missing the ptr_argv[] array in between the array-size and the UNISTR2-array. i.e it's actually an array of _pointers_ to unicode strings...
* added svcinfo <service name> command.Luke Leighton1999-10-312-2/+16
|
* NetServerTransportEnum parsing, client-side and rpcclient "srvtransports" added.Luke Leighton1999-10-302-10/+119
|
* general, drastic improvements to rpcclient.Luke Leighton1999-10-301-26/+20
| | | | | | | | | | | added samgroup <groupname> command added samgroupmem <groupname> command added proper registry key completion added sam command user-completion (e.g samuser [tab]) added sam command group-completion (e.g samgroup [tab])
* added gnu readline command-line completion to the regenum command.Luke Leighton1999-10-291-1/+2
|
* rpcclient regenum key client code rewritten to use higher order functions.Luke Leighton1999-10-293-10/+17
|
* rewrite rpcclient sam enum user code to use higher order functions.Luke Leighton1999-10-292-4/+13
|
* using #defines for function prototypesLuke Leighton1999-10-292-3/+11
|
* more reshuffling of enum groups code. more higher order functions.Luke Leighton1999-10-292-4/+9
|
* added HKEY_CLASSES_ROOT MSRPC open call. reg_open_hkcr etc. supportedLuke Leighton1999-10-292-6/+34
| | | | in rpcclient, regenum HKEY_CLASSES_ROOT or regenum HKCR to test.
* restructuring sam enum dom groups code to do multiple calls toLuke Leighton1999-10-281-2/+2
| | | | | sam_enum_dom_groups. enum dom aliases is still left to do (dom users already done).
* restructuring samr client code.Luke Leighton1999-10-281-2/+9
|
* removed samr_* variables from info struct.Luke Leighton1999-10-282-11/+6
|
* rewrote samr enum groups code a bit.Luke Leighton1999-10-281-0/+3
|
* created samr_query_groupmem() function from existing code.Luke Leighton1999-10-261-0/+6
|
* adding extra parameter back in to trust account functions (trust account name).Luke Leighton1999-10-261-1/+7
| | | | restoring opening S-1-5-20 in sam enum users code.
* cut/paste code from smbclient for wait_keyboard() function. oops.Luke Leighton1999-10-261-2/+5
|
* - typecast malloc / Realloc issues.Luke Leighton1999-10-252-28/+29
| | | | - signed / unsigned issues.
* signed / unsigned and typecast issuesLuke Leighton1999-10-251-3/+3
|
* one of those wonderful moments when running against a different MSRPCLuke Leighton1999-10-253-13/+19
| | | | | | implementation (NT5) when you discover that your code is trash. samr_enum_dom_users(), samr_enum_dom_aliases() and samr_enum_dom_groups() all take a HANDLE for multiple-call enumeration purposes.
* the dynamic memory alloc blood-fest goes on...Luke Leighton1999-10-211-2/+4
|
* turning some of the rpcclient functions dynamic. this is likely toLuke Leighton1999-10-212-14/+18
| | | | break a few things...
* various. debug levels changed. nmbd doesn't need libsmb/clienttrust.c.Luke Leighton1999-10-212-8/+13
| | | | | | | samr_lookup_rids() moved to a dynamic memory structure not a static one limited to 32 RIDs. cli_pipe.c reading wasn't checking ERRmoredata when DOS error codes negotiated (this terminates MSRPC code with prejudice).
* use DEBUGADD instead of DEBUG: clears up some of the more verbose trash.Luke Leighton1999-10-211-3/+3
|
* need status codes from cli_net_req_chal() and cli_net_auth2().Luke Leighton1999-10-191-5/+9
| | | | | | this format is what i would like _all_ these functions to be (returning status codes, not BOOL) but that's a horrendous amount of work at the moment :)
* adding error checking in parsing codeLuke Leighton1999-10-153-22/+91
|
* return results on prs_xxxxx() and all xxx_io_xxx() routines.Luke Leighton1999-10-152-579/+616
| | | | | | | the whole task is not complete, yet. xxx_io_xxx() routines that _call_ xxx_io_xxx() routines not done. prs_xxxx() covered by macros. considering doing xxx_io_xxxx in the same way.
* - added rudimentary CAP_UNICODE support because i thought it was part ofLuke Leighton1999-10-072-13/+26
| | | | | | | | | | | | | | | | | a problem i was having. - added rudimentary CAP_STATUS32 support for same reason. - added hard-coded, copy-the-same-data-from-over-the-wire version of CAP_EXTENDED_SECURITY, which is a security-blob to encapsulate GSSAPI which encodes SPNEGO which is used to negotiate Kerberos or NTLMSSP. i have implemented NTLMSSP which negotiates NTLMv1 or NTLMv2 and 40-bit or 128-bit etc. i have implemented NTLMv1 / 40-bit. *whew*.
* splitting dom info into sam_query_dominfo functionLuke Leighton1999-10-011-0/+2
|
* error-code checking in lsa_lookup_sids. anonymous connections forLuke Leighton1999-10-011-0/+3
| | | | domain info. adjusting net_srv_get_info function.
* don't leak printer handles,Jean-François Micouleau1999-09-271-1/+1
| | | | | | | don't coredump when adding forms, and a small non obvious memory leak in the rpc buffers J.F.
* split matthew's sync command (only currently called from smbpasswd)Luke Leighton1999-09-211-1/+4
| | | | into a separate module
* testing for attempts to get more info levels into samr_query_userinfoLuke Leighton1999-09-212-2/+10
|
* #defines for port 445 to SMB_PORT2Luke Leighton1999-09-151-0/+1
|
* oops.Luke Leighton1999-09-141-6/+9
|
* - initialising mach_passwd_file locks to zero (prev. uninit.)Luke Leighton1999-09-121-0/+2
| | | | | | | - cleanup - #defined report to sprintf as it's #defined to another function in other uses of cmd_lsarpc.c
* matthew chapman identified 4 previously unknown samr functions.Luke Leighton1999-08-311-4/+4
|
* added call to samr_query_groupinfo in enumgroups command (-m option)Luke Leighton1999-08-301-0/+2
|
* improved "dominfo" rpcclient commandLuke Leighton1999-08-291-1/+6
|
* display of session enum infoLuke Leighton1999-08-181-0/+11
|
* event log update, netsessenum, netconnenum update.Luke Leighton1999-08-183-11/+17
|
* patch from Michael Glauche to call get_status_connections() instead ofLuke Leighton1999-08-181-0/+5
| | | | reading STATUS..LCK direct.
* Some compilers want (void) instead of just () in function declarations.Matthew Chapman1999-08-081-1/+1
|
* reverted jeremy's c++-like security descriptor modifications as theLuke Leighton1999-08-032-27/+22
| | | | | | | | | simplest method to get rpcclient's reggetsec command working. the buffers passed as arguments in do_reg_get_key_sec() do need to be locally allocated not dynamically allocated, as two calls to reg_get_key_sec() are needed. on the first, the server fills in the size of the security descriptor buffer needed. on the second, the server fills in the security descriptor buffer.
* close socket issues:Luke Leighton1999-08-031-0/+1
| | | | | - ssl close from cli_reestablish_connection() not called. - ntlmv2 fall-back to ntlmv1 failed.
* - enumprintprocessors and enumprintmonitors added.Jean-François Micouleau1999-07-272-4/+50
| | | | | | | | | | - getjob (level 1 and 2) done. - better handling of getprinterdriver (level 2). - added workaround to print PCL files. Now the spoolss code should be compliant with all kind of printers :-) Jean Francois
* renaming AUTH VERIFIER to AUTH NTLMSSP VERIFIER. ready for addingLuke Leighton1999-07-263-12/+11
| | | | another RPC authentication system.
* BDC support.Matthew Chapman1999-07-222-6/+6
| | | | Fixing and clarifying SAM_PWD structure.
* make protoTim Potter1999-07-221-0/+1
|
* Added service name to vfs_connection_struct.Tim Potter1999-07-221-0/+9
| | | | | Added a vfs_options struct for passing smb.conf parameters to VFS modules.